1000+ Software Testing Interview Questions for Freshers Pdf - 2

Question: 6

What is Boundary value Analysis?

Boundary value Analysis is a black box test design technique in which test cases are designed based on boundary values. If N is a boundary we have to test for N,N-1,N+1. This means if the username field takes 6-15 characters, 6 and 15 are boundaries. For boundary 6, we have to test whether screen allows 5,6, 7 characters. The Screen must allow 6,7 characters since they are valid and must not allow 5 characters.

Question: 7

What is a Test case?

Test case is a set of conditions under which a tester will determine whether an application is working correctly or not.

Question: 8

What is a Test Procedure?

A Test Procedure refers to execution of Test cases in a particular order. It is also known as Business Process Flow Testing OR Workflow Testing.

Question: 9

What are the Entry & Exit criteria for Test execution?

Entry Criteria:

*Coding should be completed.

*Test cases should be Ready & Baselined.

*RTM should be updated.

*Test data should be ready & Baselined.

*Test environment/ setup should be ready.

*Software tools (like QTP,QC) should be ready and approved.

Exit Criteria:

*All Test Cases must be executed and Passed.

*All defects identified must be fixed, retested and Closed.

*Test Execution Summary reports must be prepared.

Question: 10

What is the difference between priority and severity?

Severity is the functional impact of the bug while Priority is the business impact.

Related Questions