Skip to main content

Posts

Difference between Regression testing and Retesting ?

Difference between Regression testing and Retesting ? Regression testing-: -------------------------------------------------------------------- - This is also type of testing - In this type of testing, we just retest any code or program after adding some new feature or line code to it. - This testing helps us to make sure the new addition to the already working code is not making any problem in the functionality of the code Need of Regression testing-: -------‐--‐------------------------------------------------------- a. Changes in requirement on some demand b. New feature added to the software c. After defect fixing d. After performamce issue fixing Note: If you performed all these fixing by adding something new then you will perform Regression testing. Difference between Regression testing and Retesting-: ------------------------------------------------------------------- - There are minor difference between these two but sometime people us...

MANUAL TESTING(Agile) Interview Question

Some important questions for 2-3 years of exprinced in MANUAL TESTING.(Agile) 1. What is Agile testing. 2.what is Product backlog. 3 what is sprint backlog. 4. Grooming and Retrospection. 5. What is role of product owner and scrum Master. 6. Agile testing metholidies. 7. What is sanity testing. 8. What is smoke testing. 9. When smoke and sanity testing is done. 10. What is Regression testing. 11.What is difference between component testing and unit testing. 12. Priority and severity. 13. Real time example of low priority and high severity. 14. Real time example of high priority and low severity. 15. Different between build and release. 16. Important components in test plan. 17. Testing and Retesting difference. 18. Bug life cycle. 19. What is deferred and rejected. 20. Authorization and authentication. 21.  BVA ( Boundary value Analysis). 22. What is minor difference between Monkey testing and ad-hoc testing. 23. What is view. 2...

Selenium Interview Question

SELENIUM with JAVA all interview room questions Automation: 1.What is xpath and it's types? 2.What is cross browser testing and parallel testing? 3.Challenges faced during selenium testing? 4.What is Actions class? 5.How to handle drop down in selenium? 6.How to handle multiple browser pop up? 7.How to handle multiple browser tabs in selenium? 8.How to perform upload file using selenium? 9.How to perform download file using selenium? 10.How to get all values of dropdown in selenium? 11.How to perform (control + a) through selenium? 12.How to shift between tabs of a same browser using selenium? 13.What is Robot class? 14.What is AutoIT? 15.What are the difference between get() and navigate()? 16.What are the difference between findElement() and findElements()? 17.What is difference between quit() and close()? 18.What are different locators used? 19.Difference between xpath and cssSelector? 20.Different approaches to click the submit bu...

Write a java program to print number divisible 3, 5

Write a java program to print number divisible 3, 5 In this java program, I'm going to print the number which is divisible by 3 , divisible by 5 and divisible by 3 and 5 both: package programlist; public class Numbers { public static void main(String[] args) { for(int i=1; i<=1; i++) { System.out.println("Divisable by 3"); for(int l=1; l<=50; l++) { if(l%3==0) { System.out.println(l); } } System.out.println("Divisable by 5"); for(int j=1; j<=50; j++) { if(j%5==0) { System.out.println(j); } } System.out.println("Divisable by 3 & 5"); for(int k=1; k<=50; k++) { if(k%3==0 && k%5==0) { System.out.println(k); } } } } } OutPut: Divisable by 3 3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 Divisable by 5 5 10 15 20 25 30 35 40 45 50 Divisable by 3 & 5 15 30 45

Java Program : Write a program to print Fibonanci

Java Program : Write a program to print Fibonanci package programlist; public class Fibonanci { public static void main(String[] args) { int sum; int a=0; int b=1; System.out.println(a); System.out.println(b); for(int i=1; i<=10; i++) { sum=a+b; a=b; b=sum; System.out.println(b); } } } Output:  0 1 1 2 3 5 8 13 21 34 55 89