Automation Testing Mock Interview For 1-3 YOE (Java + Selenium +TestNG + Frameworks)

  Рет қаралды 517,423

SDET- QA

SDET- QA

Күн бұрын

Пікірлер: 187
@MegaRohit92
@MegaRohit92 2 жыл бұрын
90% service based companies can be cracked easily with the help of this video. From personal experience I can say that most of the questions asked in this video are more than sufficient to crack the most of the interviews. Truly commendable work.
@Shruttiiiiii
@Shruttiiiiii Жыл бұрын
What about Product based company
@blablagswjsvsns134
@blablagswjsvsns134 2 жыл бұрын
1 answer - create object or use super. 2answer - both almost same . Overloading is simply different nu. Or type of parameters or return type. Override means - in sub class we override or change implementation of the parent. class. 3 Final - we use to make variable as non changable. 4 Finalize is use to clear or delete unusing object. 5 Static - is of class not an object.. we can call it object.vraible. 6 Can't override static but if we try to, it will not give an error but not work as overiding. 7Java only accepts single inheritance but we can achieve an interface... A extends B implements C. 8 list have order or indexing and duplication where set don't. 9 in set we have to iterate and check every element.
@KrzysztofChrzan
@KrzysztofChrzan 9 ай бұрын
I am positively surprised such knowledge after 2.5 years of experience. 👏
@gopalakrishnan2784
@gopalakrishnan2784 2 жыл бұрын
Dear sir, really those kinds of mock interviews are used to test the ability of our own, before facing the real time interview....i hope you will upload some more mock interview videos.... i am waiting for your upcoming videos.... thanks...
@phanik793
@phanik793 2 жыл бұрын
Very helpful Video because answers are also explained
@azharkhan7598
@azharkhan7598 2 жыл бұрын
Sir U r a really a hero for us.... ❤ Thanks. I have finished my Java+selenium+TestNG with the help of your video.. May you please give me a chance to interview.
@tejaswatamwar5650
@tejaswatamwar5650 6 ай бұрын
It is so perfect, specially the sir explaining all the wrong answers! This was very informative.
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
1..Two methods contain same name and different arguments is called overloading.. 2..Two methods contains same name and same arguments Then parent class one implementation child class another implementation is called overriding...
@shubhamshinde524
@shubhamshinde524 2 жыл бұрын
Inheriting the superclass method into the subclass and changing its implementation according to subclass specification is known as method overriding in which method name and argument should be same.... And Method Binding process that is method declaration and method definition (body) links together on the basis of object creation only as the arguments are same
@bindumishra2270
@bindumishra2270 2 жыл бұрын
At 10:57 there is a lot of difference between multi level and multiple inheritance... Multiple inheritance is not possible which is nothing but diamond problem, which can be achieved by interface.
@ashokgutte9391
@ashokgutte9391 2 жыл бұрын
diamond ambiguity
@srikantnayak3797
@srikantnayak3797 10 ай бұрын
It's very beneficial
@sdetpavan
@sdetpavan 9 ай бұрын
Thanks
@nickyojha4804
@nickyojha4804 Жыл бұрын
Very very helpful video to attend any interview with some confidence. ❤
@sdetpavan
@sdetpavan Жыл бұрын
Glad it was helpful!
@naveenpal965
@naveenpal965 2 жыл бұрын
Hi sir, I'm watching manual testing videos the live project one, why they are under membership? Can you please release those videos from that membership group. That would be really helpful.
@gardening3561
@gardening3561 Жыл бұрын
😊😊😊
@josephineabu
@josephineabu Жыл бұрын
Members only😂.
@ankitvani9175
@ankitvani9175 Жыл бұрын
Thanks a lot 🙏 I have watched the whole interview and it's very informative and knowledgeable. I have also learn few things that i don't know properly. Thanks you so much for such nice content.
@sdetpavan
@sdetpavan Жыл бұрын
Glad to hear that
@kvinayram6337
@kvinayram6337 2 жыл бұрын
Hello sir, This is vinayramkolli. I only have one word for you after watching this video. You are directly helping many people to get good opportunity in well reputed companies. It is building confidence in me. I am feeling regret for not watching your mock interviews. Your work is really appreciated....
@Shubhamp26
@Shubhamp26 Ай бұрын
public class CheckVowels { public static void main(String[] args) { String str = "shubham"; // Input string str = str.toLowerCase(); // Convert to lowercase for easier comparison if (str.contains("a") || str.contains("e") || str.contains("i") || str.contains("o") || str.contains("u")) { System.out.println("The string contains vowels."); } else { System.out.println("The string does not contain any vowels."); } } }
@eglobalsystems2554
@eglobalsystems2554 6 ай бұрын
Thank you for creating this content!
@sdetpavan
@sdetpavan 6 ай бұрын
Welcome
@DevTheReviewer
@DevTheReviewer 2 жыл бұрын
One of the best mock interview videos I came across. I am been seeing almost all your videos. Keep up the good work.
@shrikantsarode6676
@shrikantsarode6676 2 жыл бұрын
Very Good Interview Pavan Sir Please share some samples questions on java program and automation if possible.
@shruthitn
@shruthitn 2 жыл бұрын
Hello Pavan, Can you please conduct a mock interview for Selenium with Python, It would be a great help for them who are trying to get in to Testing with Python. Thank you!
@tejascollectionsclothingst9777
@tejascollectionsclothingst9777 2 жыл бұрын
Sir im always thankfull to you i tried you contacting sir but i dint succeed ,wherever you are, you n your family should be happy
@sitruarasan9998
@sitruarasan9998 2 жыл бұрын
Thank you so much sir very useful this interview video 👍
@sdetpavan
@sdetpavan 2 жыл бұрын
most welcome
@eyetea8889
@eyetea8889 Жыл бұрын
This is Gold. I tell people to go watch my Indian uncle. he is the bomb.
@303-g8w
@303-g8w 2 жыл бұрын
Hello sir, can you please do mock up interviews for Robot Framework, REST API testing and Jmeter . it will be very helpful thank you
@suryahappycrafts2489
@suryahappycrafts2489 7 ай бұрын
Great interview. Sir please make more interviews. We all are waiting sir.
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Overloading concept is applicable for constructor Not applicable for inheritance and overriding concept....
@fero___3005
@fero___3005 2 жыл бұрын
Overloading Applicable for methods too
@pratikbharti5277
@pratikbharti5277 2 жыл бұрын
Great.... But only one question over here if candidate gave all satisfactory ans and unable to solve the JAVA Program then most companies are hold their reassume so if we are freshers/ intermediate candidates then how it's important for us to solve logic? or can we have list of program that we can prepare before goes inter!
@sanketpatil2530
@sanketpatil2530 Жыл бұрын
On Pavan sir's you tube channel there is a separate playlist of frequently asked java programs in interview with detail explanation..You can check it
@nanavanalla10
@nanavanalla10 10 ай бұрын
Prathik, it's not like you need to prepare with set of programs, because there are N-numbers of logic you can write in Java, you should prepare on flow controls ( if else, for loop, while, do while) properly then you can write any program, there are some popular programs which are asked in interview but as a java programmer we should not relay on them. In business layer there are N number of complexity might come so that time you should resolve it with you knowledge. That's why in interview programs are given to prove that you are strong enough to write logics. If you are strong then finding a vowels in a string is simple matter of thing as in this video sir asked to that man.
@kuttylohithgaming7279
@kuttylohithgaming7279 5 ай бұрын
Great job sir🎉
@sdetpavan
@sdetpavan 5 ай бұрын
Thanks
@umeshpandhare4470
@umeshpandhare4470 2 жыл бұрын
good 1 sir......keep it up...impressed😇
@sdetpavan
@sdetpavan 2 жыл бұрын
thanks
@Patil-wh3jm
@Patil-wh3jm 3 ай бұрын
3:16 constructor can not be static
@lb8101
@lb8101 2 жыл бұрын
Thank you Pawan, these mock interview videos are really helpful.. please share more mock interviews.
@tejusgowda145
@tejusgowda145 Жыл бұрын
Please add question and answers in captions sir, great content!
@tsurvivor
@tsurvivor Жыл бұрын
The best interview is to give the interviewer a code and the ability to find the solution I don't agree with an interview with this model sometimes testers get stressed he could learn the answer I don't see any ability on the candidate, 1. Concept of tests like what assert is and why you run it 2. how to test login (create a class and test in Junit ) 3. Polymorphism, Encapsulation, abstract 4. Webdriver Framework how you would set up it 5. Give a clear solution about design patterns for testing
@Shruttiiiiii
@Shruttiiiiii Жыл бұрын
Exactly
@tanmayghadge7861
@tanmayghadge7861 2 жыл бұрын
Please post most more mock interview videos.
@prajjwalchaubey2323
@prajjwalchaubey2323 Жыл бұрын
Thanks a lot sir 😃
@sdetpavan
@sdetpavan Жыл бұрын
Welcome
@Shruttiiiiii
@Shruttiiiiii Жыл бұрын
Excellent Interview 👍 Very helpful, just a request plz answer correct answers for the questions you have asked to the candidate
@sohelahmadkhan1775
@sohelahmadkhan1775 3 ай бұрын
super video
@sdetpavan
@sdetpavan 3 ай бұрын
Thanks
@ursvsnu
@ursvsnu 2 жыл бұрын
Hi sir, Can you please make one mock interview video on Selenium webdriver Python + Appium + Robot Frame work
@rupandas1742
@rupandas1742 2 жыл бұрын
Sir I have done Engineering in EC in 2018 and having knowledge of Manual Testing.So Can I get Job?
@v2factsand327
@v2factsand327 2 жыл бұрын
Awesome questions
@sdetpavan
@sdetpavan 2 жыл бұрын
Thanks
@BittuSingh-xf9iy
@BittuSingh-xf9iy 2 жыл бұрын
Good Evening Sir, I'm Bittu Singh. I hv completed my B.Tech in Mechanical Engineering in the year 2021 and i decided to start my career in IT sector. So, I just want to know- What is the possible interview answer for 1-year back in engineering degree?? It will be very thankful if u able to answer this question.😊
@1972irp
@1972irp 2 жыл бұрын
Very Good Interview....
@sdetpavan
@sdetpavan 2 жыл бұрын
thanks
@kaliprasadgouda3848
@kaliprasadgouda3848 Жыл бұрын
Sir ap ke jitna bi tarif kare bo kam hi hee ap testing me har type ka help karte ho
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Constructor applying Access modifier are public, default,private,protected We can use any other modifier we will get compile time erroe
@padmavathykorrapati329
@padmavathykorrapati329 2 жыл бұрын
Very informative!!
@shilpakeshav6148
@shilpakeshav6148 2 жыл бұрын
Sir please do some interview for python selenium and SQL sir
@Mr_Raz_
@Mr_Raz_ Жыл бұрын
class Child extends Parent implements InterFace1 , InterFace2 {
@Mounikareti
@Mounikareti 2 ай бұрын
Please do mock interviews for playwright using javascript
@savitasutar427
@savitasutar427 Жыл бұрын
Helpful
@sdetpavan
@sdetpavan Жыл бұрын
Glad to hear that
@apu4886
@apu4886 2 жыл бұрын
Thank you so much sir
@sdetpavan
@sdetpavan 2 жыл бұрын
Most welcome
@rakshan5965
@rakshan5965 2 жыл бұрын
Hello sir, Can you please suggest any course/project about manual testing in coursera
@jyoshnajoe877
@jyoshnajoe877 Жыл бұрын
sir is there any chance to get pdf of all imp interview quations and answers coz currently i am prepairing for interview i want to follow one order while prepairing if have could u tell where i can find that will really help us
@durvasulasandeep6886
@durvasulasandeep6886 2 жыл бұрын
What is the difference of create object for both Wedriver driver=new chromedriver(); chromedriver driver=new chromedriver();
@fero___3005
@fero___3005 2 жыл бұрын
Parent class = new child class
@muthuvicknesh4912
@muthuvicknesh4912 2 жыл бұрын
WebDriver is an interface we can't create object for it possible of creating a object reference using that interface implemented class Chromedriver is class which implements the Web Driver.., interfaces
@anupriya4113
@anupriya4113 2 жыл бұрын
We are performing upcasting here
@blablagswjsvsns134
@blablagswjsvsns134 2 жыл бұрын
10 findelemts return list and windowhandles return set 11 .count=0 loop string(i=0 ;i Less then Len) If(s.charAt(i)==o or a or i or e or u) Count+1 Return count
@umeshchandrasutar4241
@umeshchandrasutar4241 2 жыл бұрын
Nice Sir Currently working in Tcs in BPS I want to switch to IT Manual Testing so please advice
@nakulnagariya7736
@nakulnagariya7736 2 жыл бұрын
I was in TCS (BPS), keep going, instead manual considers Automation, you will Thanks me Later.
@umeshchandrasutar4241
@umeshchandrasutar4241 2 жыл бұрын
@@nakulnagariya7736 bro bps sector is not well... Where lots of lifes are spoilng
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Class C implements A,B
@arjityadavv
@arjityadavv 2 жыл бұрын
@27:26 good question
@janjanamsaibindu2840
@janjanamsaibindu2840 2 жыл бұрын
Sir, iam also interested to participate in mock interview....can u consider my request ... On ( manual + ETL ) testing .
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Tq sir.....
@Pushpateluguvlogs7732
@Pushpateluguvlogs7732 2 жыл бұрын
Hi sir plz upload selinum classes with details explanation coding
@sarojingole6554
@sarojingole6554 2 жыл бұрын
As fresher, 0 experience in testing how much knowledge of java and selenium is sufficient to crack interview or how much I have to study.
@unteck7023
@unteck7023 2 жыл бұрын
Hello sir please arrange more mock, i have watched all the mocks
@AkashUmap-c6w
@AkashUmap-c6w 3 ай бұрын
Hello Pawan I'M Akash in Pune. I have 2+ years of experience in automation and manual testing. What should I do to prepare for a mock interview with you?
@beast8235
@beast8235 Жыл бұрын
Whether he is a Fresher or employee while looking in his answer he may be fresher
@vivekkumarrana3775
@vivekkumarrana3775 2 жыл бұрын
Hello sir , I completed my b.tech in mechanical but now i try to switch in IT sector so it is good for me in future or not ?
@fero___3005
@fero___3005 2 жыл бұрын
Yes bro mee too in our college 🎓 changing my career
@pradipadvitote1288
@pradipadvitote1288 2 жыл бұрын
After completing the automation testing cours can we become job ready, or we have to take traning again in selected company.
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Parent class Child class contain same method signature Different implementation
@m.a6836
@m.a6836 10 ай бұрын
I don't know why companies are only focused on experience.. this guy has a experience of 1-3 years,then i think he has average knowledge ...i hv seen many freshers who are carrying more clean knowledge on each nd everything..nd still looking for a chance..do focus on freshers also...
@trunalhajare6384
@trunalhajare6384 6 ай бұрын
Correct 💯💯💯💯💯
@safaro92
@safaro92 Ай бұрын
Agree
@paparaosuvarnam189
@paparaosuvarnam189 2 жыл бұрын
Sir can we extend two classes in multiple inheritance.can u make a video
@habeebbasha5869
@habeebbasha5869 2 жыл бұрын
Please make a interview on python with selenium sir 🙂
@prashanthi3326
@prashanthi3326 2 жыл бұрын
Hi sir, i have a career gap due to took care of my family.Now i have to start my career. Please could you conduct mock interview for me.
@kasiviswanath3039
@kasiviswanath3039 2 жыл бұрын
Hi sister, I have 3 years career gap,
@udaykhandekar1847
@udaykhandekar1847 2 жыл бұрын
Hello... Sir any video on simple basic interview program
@heenapanchabhai1430
@heenapanchabhai1430 2 жыл бұрын
Sir what I should study for automation testing Please tell me topic.
@shukria485
@shukria485 2 жыл бұрын
I am doing by myself. I study java and selenium and others.
@fero___3005
@fero___3005 2 жыл бұрын
@@shukria485 yes
@hiteshsc
@hiteshsc 2 жыл бұрын
Sir due to civil service preparation i dont have experience can i get job by skill in java and selenium even now?my gradution gap is 5 years.
@Veky_siri_official
@Veky_siri_official 2 жыл бұрын
sir can u conduct a interview for selenium with java.it would be a great help for me......thank you sir
@arunkumar-xr1em
@arunkumar-xr1em 2 жыл бұрын
Hi sir, build() is an optional one right?
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Class can extends only one class at a time
@niharikagoud1691
@niharikagoud1691 6 ай бұрын
Hello Sir How can I get myself enrolled for mock interview.
@sukanyadash5714
@sukanyadash5714 2 жыл бұрын
Helo sir . I wanted to buy a self preparation manual testing course. Can you please let me know how to initiate the process of payment.so that I can start my preparation.
@sdetpavan
@sdetpavan 2 жыл бұрын
Please check details on my website.
@ravitejagollapudivsss2769
@ravitejagollapudivsss2769 2 жыл бұрын
@@sdetpavan Sir can you please provide the website address pls. Iam new to this channel....!!
@shahedshaikh8787
@shahedshaikh8787 2 жыл бұрын
Sir if possible make video on power bi 👏🏻
@sdetbyraviteja568
@sdetbyraviteja568 10 ай бұрын
Hi sir. I want to give mock interview to you. May i know the process please?
@bharathKumar-or6gd
@bharathKumar-or6gd 2 жыл бұрын
Sir, can we get his linkedin profile both of we are working in same company if you provide that it would be help full to me and others also
@purnachandratiruveedhula479
@purnachandratiruveedhula479 2 жыл бұрын
pavan Sir, need your support for i m unable to track interview proper manner
@vbn120
@vbn120 Жыл бұрын
Plz take some more videos on the same
@mukeshjayabalan1322
@mukeshjayabalan1322 2 жыл бұрын
Thank you
@PriyankaPatil-qt7yv
@PriyankaPatil-qt7yv 2 жыл бұрын
Sir plzz u help me how to handle calender cleartrip webpage plzz sir
@RajkumarDarni
@RajkumarDarni Жыл бұрын
Can you please share details ofthe mock interview proces?.
@sdetpavan
@sdetpavan Жыл бұрын
www.pavantestingtools.com/p/mock-interviews.html
@moneymagnetGroup258
@moneymagnetGroup258 2 жыл бұрын
Hi Sir, Please upload a video to run multiple spec files in protractor or any framework in same browser parallely in Jenkins to save execution time. Also execution log should also be generated
@pramodthakare6955
@pramodthakare6955 2 жыл бұрын
Pp p
@pramodthakare6955
@pramodthakare6955 2 жыл бұрын
P
@dineshd9155
@dineshd9155 2 жыл бұрын
As a Manual Tester, If I learn Python, How should helpful for me in my carrier, What kind of role should play in company. Guys could me please help me out!
@Napalem99
@Napalem99 2 жыл бұрын
Many companies now demand Python for automation and salaries are pretty high so keep it up and learn PyTest, the only issue is, that for these positions companies require 3 to 4 years of experience ,anyway learn and practice cause sometimes HR and Tech Specialist will prioritize your skills not exp
@dineshd9155
@dineshd9155 2 жыл бұрын
@@Napalem99 Thank you so much..
@Vijayawada-k3p
@Vijayawada-k3p 2 жыл бұрын
If you learn python,you can use it as binding language for selenium, you can go as python developer and DA
@dineshd9155
@dineshd9155 2 жыл бұрын
@@Vijayawada-k3p Hi, I can't understand cleary. i am really sorry could you please expalin with clearly.
@maqsoodalikhan0799
@maqsoodalikhan0799 2 жыл бұрын
Manual test..?
@masthanvalimasthan6308
@masthanvalimasthan6308 2 жыл бұрын
what is web driver pop up , one of interwive plan aske the this question please help me
@Arjun2mkap3929
@Arjun2mkap3929 Жыл бұрын
If he is not answering or wrong answer sir please correct it there itself else we will get confusion
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Parent & child have static keyword It is method hiding
@saurabhlal2368
@saurabhlal2368 2 жыл бұрын
Hello sir which languages is best for automation testing ?
@lostboy5160
@lostboy5160 2 жыл бұрын
Java
@dipeshkhotele3901
@dipeshkhotele3901 2 жыл бұрын
Java
@Rider-jn6zh
@Rider-jn6zh 2 жыл бұрын
@@lostboy5160 why not python...is there any particular reason that java is best
@mukulsingh9239
@mukulsingh9239 2 жыл бұрын
@@Rider-jn6zh Industry demand
@lostboy5160
@lostboy5160 2 жыл бұрын
@@Rider-jn6zh no particular reason for that but mostly company refer java
@shajahansk8542
@shajahansk8542 Жыл бұрын
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Class implement A,B
@devanshi3050
@devanshi3050 Жыл бұрын
sir can you please share the resume of the candidate? it will be really helpful for freshers like me.
@sachinsonar9910
@sachinsonar9910 Жыл бұрын
Hiii.. You want to make your career in automation??
@pradeepchevula789
@pradeepchevula789 2 жыл бұрын
Which language is best for degree chemistry students in software field
@voyagersourabh
@voyagersourabh 2 жыл бұрын
Hey pradeep, I don't know if you have any expertise on any programming language. But you can start preparing if you have not any. Learn any programming language like C++, Java or Python by learning upto OOPS concepts and then try to build some projects. If that bores you try learning HTML, CSS and little javascript
@pradeepchevula789
@pradeepchevula789 2 жыл бұрын
@@voyagersourabh then how can i get job
@venkateshn2424
@venkateshn2424 2 жыл бұрын
@@voyagersourabh hi bro testing requires more coding compared to azure
@raghuchinni6179
@raghuchinni6179 2 жыл бұрын
Multiple inhertance is not applicable for java classes...
@fero___3005
@fero___3005 2 жыл бұрын
No we can use using interface
@PrashanthPosani
@PrashanthPosani 2 жыл бұрын
Hi am from a commerce background working in London want to enter in to IT background jobs as I have much scope in this country can u suggest which will be easy for me to get in to IT jobs.
@vasiliimakogon1847
@vasiliimakogon1847 2 жыл бұрын
Почему мне попалось это в рекомендации)
@sagarpingle7029
@sagarpingle7029 2 жыл бұрын
тебе это нужно мой друг 😃
Mock Interview For 1-3 YOE ( Manual Testing+ Java +Selenium)
47:48
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Scenario Based Software Testing Interview Questions & Answers | Part 1
28:52
Software Testing Mentor
Рет қаралды 195 М.
SDET Automation Mock Interview - 8+ YOE (Selenium, Java, API, Testing)
1:37:32
Naveen AutomationLabs
Рет қаралды 285 М.
Mock Interview For 0-2 YOE ( Manual Testing+ Java +Selenium)
38:23
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19