Manisha

Update:

Manual Testing Interview Questions and Answers (Level-1)

Q1. What is the difference between Functional and Non-Functional Requirements? Answer: In software testing, understanding the difference between functional and non-functional requirements is fundamental. Q2. How are Severity ...

Publish:

JAVA OOPS Interview Questions and Answers (Level-3)

15. What are static methods and variables in Java? How are they used in utility classes? Answer In Java, the keyword static is used to declare members (variables ...

Publish:

JAVA OOPS Interview Questions and Answers (Level-2)

8. What is the difference between List and Set in Java Collections? Answer In Java Collections, List and Set are two of the most commonly used interfaces, but ...

Publish:

JAVA OOPS Interview Questions and Answers (Level-1)

1. What is Encapsulation, and how is it used in frameworks like Selenium or TestNG? Answer Encapsulation is one of the core principles of Object-Oriented Programming (OOP). It ...

Publish:

Git Commands Interview Question and Answers (Level-3)

27. What is GitOps and how does Git work in a GitOps Workflow? Answer: GitOps is a DevOps practice where Git repositories act as the single source of ...

Publish:

Git Commands Interview Question and Answers (Level-2)

14. What are Git Merge Strategies? How do you handle merge conflicts? Merge strategies are methods Git uses to combine changes from different branches. They’re crucial during feature ...

Publish:

Git Commands Interview Questions and Questions (Level-1)

1. What are some basic Git commands and their purposes? Answer: Git provides core commands to manage source code and collaborate on development projects. Here are the most ...

Publish:

Automation Testing Interview Questions and Answers (Part-V)

141. How to work with Advertisement pop-up Use driver.switchTo().frame() if it’s inside an iframe, or handle with XPath. 142. How to handle File Download Pop-up Use AutoIT, Robot ...

Publish:

Automation Testing Interview Questions and Answers (Part-IV)

 121. Difference: Thread.sleep vs Implicit vs Explicit Wait Type Scope Usage Thread.sleep Static Wait Sleeps for fixed time Implicit Wait Applied globally Waits for element existence Explicit Wait ...

Publish:

Automation Testing Interview Questions and Answers (Level-3)

 101. Difference between quit() & close() in Selenium 🔹 102. How to Maximize & Minimize the Browser in Selenium WebDriver // Maximize  driver.manage().window().maximize(); // Minimize  driver.manage().window().minimize(); 🔹 103. ...