Automation Testing Mock Interview | Selenium Interview| RD Automation Learning

  Рет қаралды 22,822

RD Automation Learning

RD Automation Learning

3 жыл бұрын

‪@rdautomationlearning609‬
Have a look at below Playlists:
Testing Interview Questions & Answers asked at various companies like Amazon, Capgemini, PayTM, Accenture, etc
• Amazon Interview Quest...
Software Testing Mock Interviews
• What is Software Testi...
RPA (Automation Anywhere) Interview videos
• What is RPA?| What is ...
This video contains Java interview questions, Selenium interview questions, TestNG interview questions and Database interview questions, Rest API interview questions, Manual Testing interview questions that were asked as part of Mock Interview Questions Process.
software testing interview questions,software testing tools,manual and automation testing mock interview,selenium automation testing mock interview,automation testing mock interview for experienced,manual testing mock interview for experienced,rd automation learning,automation testing interview questions for 2 years experience selenium,automation testing interview questions,automation testing interview questions and answers,automation testing interview mock,software testing questions guru99, hackerrank software testing interview questions
1. Tell us about your automation framework
2. How many test cases do u automate in a day
3. What is meant by dependency in TestNG?
Dependency in TestNG is a process of making one test dependent on the other test. By providing dependencies in the test methods, we assure that a test method B would only run if test method A runs (given B depends on A). Moreover, in TestNG, we can also have one test method dependent on multiple tests.
4. How do you create dependencies in TestNG?
We can create the dependent tests in TestNG by providing the dependsonMethods parameter on the @Test annotation. The value of the attribute is the name of the method on which we want this method to depend.
5. What is meant by invocationCount in TestNG?
The invocationCount is an attribute that defines the number of times a test method has to run in a single execution. So, if the invocationCount sets as 5, then the test method would run five times each time I execute the TestNG test case.
Syntax for invocationCount:
@Test (invocationCount = 5)
6. What is the significance of “timeout” in TestNG?
In TestNG, “timeout” is a parameter that defines the maximum time that a method can take for execution. The timeout parameter is handy if the execution time is a constraint during testing, or the tester wants to take precautions against the endless execution of tests. We can declare the timeout parameter at:
suite level: To put a time constraint on all the methods in the suite.
method level: To put the time constraint on a particular method.
Syntax:
@Test (timeout = 1000)
7. Can we disable a test in TestNG? If so, explain how?
Yes, disabling a test can be achieved in TestNG. Once we disable a test, it will not run in the next execution cycle. Moreover, we accomplish this by using the “enabled” attribute.
Syntax:
@Test (enabled = False)
8. what is array list & lnkedlist
ArrayList
ArrayList is implementation of list interface.
ArrayList is not synchonized(so not thread safe)
ArrayList is implemented using array as internal data structure.It can be dynamically resized .
LinkedList
LinkedList is implementation of list and deque interface.
LinkedList is not synchronized
LinkedList is implemented using doubly linked list as internal data structure.
9. Search is faster in ArrayList as uses array internally which is index based. So here time complexity is O(1)
Search is slower in LinkedList as uses doubly Linked List internally So here time complexity is O(n)
10. What is checked exception?
Checked exceptions are those exceptions which are checked at compile. If you do not handle them , you will get compilation error.
11. Unchecked exceptions are those exceptions which are not checked at compile time. Java won’t complain if you do not handle the exception.
12. What do you mean by Platform independence of java?
You can write and compile program in one Operating system and run in other operating system.
For example:
You can compile program in Windows and can run it in Unix.
13. What is difference between JVM, JRE and JDK ?
JVM : JVM stands for Java Virtual Machine. It is virtual machine which actually runs the byte code.
JRE : JRE stands for Java Runtime Environment. It provides runtime environment for java code. It has JVM , libraries such as rt.jar and other files.
JDK : JDK stands for Java development kit. It is superset of JRE, it has JRE + compilation and debugging tools(javac and java).

Пікірлер: 26
@rdautomationlearning609
@rdautomationlearning609 3 жыл бұрын
Testing Interview Questions & Answers asked at various companies like Amazon, Capgemini, PayTM, Accenture, etc kzfaq.info/get/bejne/rcVgia15zM-lomg.html Software Testing Mock Interviews kzfaq.info/get/bejne/qrBldtlpuby8g6s.html
@VikramKumar-kv9mv
@VikramKumar-kv9mv 7 ай бұрын
😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊
@nikhilkp7273
@nikhilkp7273 2 жыл бұрын
One of the best channel I have ever seen. Things are explained clearly. As everyone says, nobody will get nervous if the interviewer like you :) It would be an inspiration for us the mock interview participants got hired in any company after this experience.
@sandeepthuniki3222
@sandeepthuniki3222 Жыл бұрын
Implementation of ArrayList is not synchronized by default. It means if a thread modifies it structurally and multiple threads access it concurrently, it must be synchronized externally.
@rahulaher76
@rahulaher76 2 жыл бұрын
Great sir i also want to start my career as manual or automation tester whatching this video its boost my confidance i also want to take a mock interview .plz tell what i do,its helps me to fear out .
@vanithamedi3979
@vanithamedi3979 3 жыл бұрын
Excellent broo nv
@rdautomationlearning609
@rdautomationlearning609 3 жыл бұрын
Thank you..Happy to help!!
@aryenzaifrani2533
@aryenzaifrani2533 3 жыл бұрын
Arraylist : In this insertion data is preserved, helpful in search data. Linklist: insertion data is not preserved. Helpful in data update, delete.
@rdautomationlearning609
@rdautomationlearning609 3 жыл бұрын
Absolutely correct answer!!
@aryenzaifrani2533
@aryenzaifrani2533 3 жыл бұрын
@@rdautomationlearning609 I will surely contact you for my Mock Interview in the next 2 months for Manual +Automation(Sel).
@arshadayyubbaghwan3887
@arshadayyubbaghwan3887 4 ай бұрын
Linked List also maintain insertion order, correct me if I am wrong
@Chocoboy1128
@Chocoboy1128 2 жыл бұрын
hai sir can i get resume with selenium with java model resume from you please
@ramshah6733
@ramshah6733 3 жыл бұрын
sir does selectorshub certification helps in interveiw and what are the selectorshub interview questions?
@rdautomationlearning609
@rdautomationlearning609 3 жыл бұрын
Yes certification is helpful
@abhinavdeshmukh5243
@abhinavdeshmukh5243 2 жыл бұрын
What happened to market there is no call for automation test engineer ...i upload my resume since last 15 days not getting that much call
@thatchaimonk2665
@thatchaimonk2665 Жыл бұрын
Now getting calls.
@ShubhamMishra-lo6wz
@ShubhamMishra-lo6wz 3 жыл бұрын
Arraylist is not synchronized linkedlist is
@rdautomationlearning609
@rdautomationlearning609 3 жыл бұрын
Correct answer!
@RohanKumar-bo6fi
@RohanKumar-bo6fi 2 жыл бұрын
Hello Sir, I also wanted to participate in your mock interview session as I am also looking for a job switch in Automation. Can you please help me in enrolling for the mock interview sessions
@rdautomationlearning609
@rdautomationlearning609 2 жыл бұрын
Please share your CV at rdautomationlearning@gmail.com
@RohanKumar-bo6fi
@RohanKumar-bo6fi 2 жыл бұрын
@@rdautomationlearning609 sure Sir, Thanks a lot. I will be sharing right away.
@pd2337
@pd2337 2 жыл бұрын
Is this mock for 1st or 2nd round?
@rdautomationlearning609
@rdautomationlearning609 2 жыл бұрын
1st round or 2nd round, combine set of questions are asked
@vishaldeshpande51ify
@vishaldeshpande51ify 3 жыл бұрын
Vector is synchronized
@vishaldeshpande51ify
@vishaldeshpande51ify 3 жыл бұрын
Arraylist and linkedlist is not synchronized
@rdautomationlearning609
@rdautomationlearning609 3 жыл бұрын
Wonderful!!
THEY made a RAINBOW M&M 🤩😳 LeoNata family #shorts
00:49
LeoNata Family
Рет қаралды 32 МЛН
когда повзрослела // EVA mash
00:40
EVA mash
Рет қаралды 4,2 МЛН
你们会选择哪一辆呢#short #angel #clown
00:20
Super Beauty team
Рет қаралды 38 МЛН
Automation Testing Interview Questions | Java Testing Interview Q&A
35:10
RD Automation Learning
Рет қаралды 16 М.
Selenium - Crack Interview  - Top 20  TestNG  Real Time Interview Questions and Answers
20:10
Automation Testing Interview Questions| Selenium Interview Questions| 0-2 years
45:19
Automation Testing Interview For Experienced| MindTree Interview Questions
34:03
RD Automation Learning
Рет қаралды 38 М.
Automation Testing Interview For Experienced| Mphasis Interview Questions
28:18
RD Automation Learning
Рет қаралды 65 М.
Mock interview for Manual Testing 3-4 YOE | Interviewing my Subscriber
51:42
SoftwaretestingbyMKT
Рет қаралды 35 М.
Automation Testing Interview| Java Interview Questions For Selenium Testers
30:17
RD Automation Learning
Рет қаралды 49 М.
Automation Testing Interview Questions | Java Testing Interview Q&A
33:38
RD Automation Learning
Рет қаралды 35 М.
THEY made a RAINBOW M&M 🤩😳 LeoNata family #shorts
00:49
LeoNata Family
Рет қаралды 32 МЛН