Top 25 Java Interview Questions and Answers for SDET

Поделиться
HTML-код
  • Опубликовано: 4 окт 2024
  • Here you will learn
    Top 25 Java Interview Questions and Answers for SDET.
    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 Cypress Tutorial Full Play List ► bit.ly/3iMdi2a
    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 Selenium Tutorial Full Play List ► bit.ly/3vFR9X5
    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.
    #softwaretestingandautomation #subhasishmishra #softwaretesting #selenium #apitesting #java #restassuredapiautomation #testng #sql #unix #automationtesting #softwaretestinginterviewquestionandanswers #testautomation

Комментарии • 69

  • @status_and_storiess
    @status_and_storiess 10 месяцев назад +4

    Even after 2 years its worth, thanks🙏

  • @alan31grg
    @alan31grg Год назад +6

    Great video, only problem is I had to ice my eyes after watching it, please go for other background colors that are kinder to our eyes.

  • @anushabethapudi3669
    @anushabethapudi3669 Год назад +1

    It's very helpful for who want to change the job.

  • @vishwass110
    @vishwass110 3 года назад +3

    Nice, Thank you for sharing your time and knowledge!!

  • @laxmikambar7610
    @laxmikambar7610 5 месяцев назад

    Thanks for making this video which covers most important topics which are most needed to know for core java interview 😊

  • @hasmukhrpatel
    @hasmukhrpatel 11 месяцев назад +1

    Very Good Video Sir. Simple way you explain java

  • @sk95661
    @sk95661 5 месяцев назад

    Thanks for your work which helps lot of people like me

  • @baan1221
    @baan1221 3 года назад +2

    perfect compilation , very helpful . thankyou so much.

  • @nikitawayal6285
    @nikitawayal6285 3 месяца назад

    covered all the topics , Thanks:)

  • @VikramKumar1111.
    @VikramKumar1111. 3 года назад +4

    Awesome explanation👍🙂

  • @navathutejomai1038
    @navathutejomai1038 2 года назад +1

    Excellent explaination and research on the topics

  • @pankajanagarajK4me
    @pankajanagarajK4me 2 года назад +2

    Very useful, thnx so much!!!!

  • @hnlogs1
    @hnlogs1 Год назад +1

    Hi sir, The content is really good, but the background of the video should be white or other instead of red.

  • @Sudheerkreddy
    @Sudheerkreddy 3 года назад +1

    Good one .. add Real time scenarios for automation testing questions.

    • @SoftwareTestingAndAutomation
      @SoftwareTestingAndAutomation  3 года назад

      Thank you. Please go through this RUclips Playlist link bit.ly/3frBpQZ which contains top interview questions and answers for SDET/software Testing/QA interviews.

  • @shubham3492
    @shubham3492 Год назад +1

    thanks for creating this series of questions it meen a lot , while preparing interview in short period of time

  • @kralns2868
    @kralns2868 6 месяцев назад

    Hi,
    Q14 interface can only extend another interface is this correct? Because on the top of that written interface can extend many interfaces

  • @americadarshan1524
    @americadarshan1524 3 года назад +3

    nice content but pls don't put red background in your video. sometimes it irritates . go with neutral colors

  • @goldie1149
    @goldie1149 2 года назад +3

    Ques 23- small mistake -- Hashmap doesn't maintain insertion order.

    • @TechTestTutor
      @TechTestTutor Год назад

      Starting from Java 8, HashMap in Java does maintain the insertion order for its key-value pairs. Prior to Java 8, the order of elements in a HashMap was not guaranteed. This change was introduced as an implementation detail in Java 8 and later became part of the Java language specification in Java 12.

    • @Sasikumar-jt9gb
      @Sasikumar-jt9gb 4 дня назад

      @@TechTestTutor source?

  • @rohitmishra441
    @rohitmishra441 2 месяца назад

    Important questions

  • @MegaPK40
    @MegaPK40 2 года назад +1

    Thank you very much

  • @serhatpolat3104
    @serhatpolat3104 3 года назад +1

    You made really nice videos with lists, I'm going to watch all of them, thank you.

  • @CypressAndJavaScriptTutorials
    @CypressAndJavaScriptTutorials 2 года назад +1

    Thank you :)

  • @navneetkaur6606
    @navneetkaur6606 3 года назад +1

    Good video...can you create Tutorila on Rest assured Framework

  • @kishoresrinivas2104
    @kishoresrinivas2104 2 года назад

    Very usefull information will attending before interview

  • @pournimabhosle5503
    @pournimabhosle5503 3 года назад +1

    Sir can you please make video on java oops concept use for selenium testing.

  • @atulgupta9202
    @atulgupta9202 3 года назад +2

    Perfect

  • @bharathkoneru4008
    @bharathkoneru4008 3 года назад +3

    Hi Mishra, Thanks for the amazing series.
    I think there is a small mistake regarding StringBuilder and StringBuffer classes w.r.t 2nd point:
    As StringBuilder methods are not thread-safe, multiple threads are allowed on operate on StringBuilder methods. (mult-threaded env)
    As StringBuffer methods are thread-safe, at a time only one thread is allowed to operate.

    • @SoftwareTestingAndAutomation
      @SoftwareTestingAndAutomation  3 года назад +1

      Thank you .
      StringBuffer is thread-safe meaning that they have synchronized methods to control access so that only one thread can access StringBuffer object's synchronized code at a time.
      StringBuffer objects are generally safe to use in a multi-threaded environment where multiple threads may be trying to access the same StringBuffer object at the same time.
      StringBuilder is not synchronized so that it is not thread-safe. By not being synchronized, the performance of StringBuilder can be better than StringBuffer.
      If we are working in a single-threaded environment, using StringBuilder instead of StringBuffer may result in increased performance. This is also true of other situations such as a StringBuilder local variable where only one thread will be accessing a StringBuilder object.

    • @rujaysworld3441
      @rujaysworld3441 2 года назад

      .

    • @Dileepkumar-yw2yn
      @Dileepkumar-yw2yn 2 года назад +1

      Edit video then

  • @karthikeyanmuralidharan5929
    @karthikeyanmuralidharan5929 3 года назад

    Really good content, worth watching. Thanks for your efforts

  • @priyanka.priya123
    @priyanka.priya123 Месяц назад

    why string is immutable

  • @vishnukumar-on2wh
    @vishnukumar-on2wh 2 года назад

    You writing in answer short things explain extra thing u should also mention there ...

  • @FA-sr6lx
    @FA-sr6lx 2 года назад

    is there some place to download this presentation please and thank you

  • @rajeshtiwari1222
    @rajeshtiwari1222 2 года назад

    Sir ji question no 18 your second line entries and you speak entities

  • @beatheartmine
    @beatheartmine 3 года назад

    It's weird actually, aap 3 points show kr rhe slide me & bole jaa rhe 6-7 points, why haven't you added those as well!!??

    • @SoftwareTestingAndAutomation
      @SoftwareTestingAndAutomation  3 года назад +1

      I ve added key points in the slide and added further points while explaining.
      Still your point is noted. Thank you 😊

  • @allisonscanlan4144
    @allisonscanlan4144 2 года назад

    17:00 bookmark

  • @Meherlalitha
    @Meherlalitha Год назад

    sir please change red color background

  • @satishkvs156
    @satishkvs156 3 года назад +1

    Thank you so much