0% found this document useful (0 votes)
3 views

QualiTest_Interview_Questions

The document contains a list of technical questions related to software testing, programming concepts, and SQL queries. It covers topics such as the differences between various testing methods, the use of WebDriver in Selenium, and method overloading and overriding in programming. Additionally, it includes questions about locators in Selenium, SQL deadlocks, and specific programming outputs.

Uploaded by

reddyharshit961
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

QualiTest_Interview_Questions

The document contains a list of technical questions related to software testing, programming concepts, and SQL queries. It covers topics such as the differences between various testing methods, the use of WebDriver in Selenium, and method overloading and overriding in programming. Additionally, it includes questions about locators in Selenium, SQL deadlocks, and specific programming outputs.

Uploaded by

reddyharshit961
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

==QUALITEST QUESTIONS====

What is the difference between system testing and end to end testing?
What is webdriver?
What is the difference between class and webdriver?
What is the difference between smoke and sanity testing?
Which is the service you are using for postman tool?
What is the difference between soap and restful?
Status code: 402 and 500
What is integration testing?
Will you perform Integration testing using postman?
What is deadlock in SQL?
Write a query to update student name using student table?
The application which you worked is a service based???

-----------------------------------------------------------------------------------
--------------

1. Explain method overloading and method over riding.


2. What are methods?
3. Execution of static blocks, methods and variables.
4. What are loacators?
5. Different types locators in selenium.
6. What is the preference of locators you give ? And Why?
7. Explain the different types of waits.
8. What are the difference between webdriver wait and fluent wait.
9. What is final key? How to change the final key value?
10. Explain about your project.
11. What is following, following-sibling, preceding and preceding-sibling.
12. What is the difference between following and preceding.
13. What is the difference between following and following-sibling.
14. Tell me the output of the below program.

Class Sample
{
int a=10;
static b=20;
Public void print1()
{
System.out.println(a);
System.out.println(b);
}
Public static void print2()
{
System.out.println(a);
System.out.println(b);
}
}
Public class DemoSamole()
{
Public static void main(String[]args)
{
Sample obj = new Sample();
Obj.print1();
Sample.print2();
}
}

-----------------------------------------------------------------------------------
-------------------------

You might also like