QualiTest_Interview_Questions
QualiTest_Interview_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???
-----------------------------------------------------------------------------------
--------------
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();
}
}
-----------------------------------------------------------------------------------
-------------------------