27 - Java Program to find the duplicate words in a string.

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ค. 2024
  • Here is the link of Full Play List ► bit.ly/2ZGeBFC
    Here we will learn a Java Program to find the duplicate words in a string.
    Additional Info
    Link for SDET/QA Interview Full Play List ► bit.ly/3frBpQZ
    Link for API Testing Full Play List ► bit.ly/2BY0vHu
    Link for Web-services Full Play List ► bit.ly/3bfK0Ef
    Link for Protractor Testing Full Play List ► bit.ly/2ztlEIK
    Link for Java Programs for Software Testers Full Play List ► bit.ly/2ZGeBFC
    Link for Java Tutorial Full Play List ► bit.ly/2Z3tP8L
    Link for TestNG Full Play List ► bit.ly/3jGJ3YT
    Please subscribe to our channel ► bit.ly/2UIvFcm
    and press the bell icon to get updates on latest tutorial.

ความคิดเห็น • 20

  • @mohitthakur7503
    @mohitthakur7503 2 ปีที่แล้ว +4

    After watching soo many videos, here I got the full explanation with complete logic ❤️

  • @shahdhossam2221
    @shahdhossam2221 ปีที่แล้ว +1

    Perfect and super easy , thanks alot ❤️❤️❤️

  • @nikwadikar5187
    @nikwadikar5187 ปีที่แล้ว +1

    Thankx a lot...u r a saver Bhai... respect 🙏

  • @mohammednawaz.s1214
    @mohammednawaz.s1214 ปีที่แล้ว +2

    Nice explaination

  • @kavithagorantla6000
    @kavithagorantla6000 2 ปีที่แล้ว +2

    Awesome sir

  • @AbhishekKumar-jt6gn
    @AbhishekKumar-jt6gn 3 ปีที่แล้ว +1

    good explan

  • @monstercluster448
    @monstercluster448 ปีที่แล้ว +1

    instead of equals can we use == operator

  • @amolbhalerao4340
    @amolbhalerao4340 ปีที่แล้ว +1

    really good explanation sir , but i have an dout that that 0 will not going to comapare with 0? please guide!

    • @SoftwareTestingAndAutomation
      @SoftwareTestingAndAutomation  ปีที่แล้ว

      Thank you. Please watch the video one more time, we are comparing words[i] != 0, that means we are comparing the value present in i th index of word with zero.

    • @amolbhalerao4340
      @amolbhalerao4340 ปีที่แล้ว

      @@SoftwareTestingAndAutomation ohk thanks sir, now I got it sir

  • @guglothgopal3015
    @guglothgopal3015 ปีที่แล้ว

    Bro How to remove String video cheyandii bro

  • @priyadarsinisahoo2544
    @priyadarsinisahoo2544 4 หลายเดือนก่อน

    Sir i have doubt in 1iteration word(i) value is 0 only how that if condition is satisfy that is i value is not equal to zero

    • @suryaswamynathan0866
      @suryaswamynathan0866 หลายเดือนก่อน

      I think, In 1 iteration they are pointing to i=0 as words[0]
      In Line 32, they are checking two conditions:
      count is greater than 1 ===>Matching
      words[i]!="0" ====> words[0] is "Learn" not equal to zero, so the condition is matching