retagged by
4,483 views
6 votes
6 votes

Match the following:

(P) Condition Coverage                     (i) Black-box testing

(Q) Equivalence class partitioning     (ii) System testing

(R) Volume testing                             (iii) White-box testing

(S) Alpha testing                                (iv) Performance testing

  1. P - ii, Q - iii, R - i, S - iv
  2. P - iii, Q - iv, R - ii, S - i
  3. P - iii, Q - i, R - iv, S - ii
  4. P - iii, Q - i, R - ii, S - iv
retagged by

2 Answers

4 votes
4 votes

White box testing  tests internal structures or workings of an application. It covers following :
Control flow testing,Data flow testing,Branch testing,Statement coverage,Decision coverage,Modified condition/decision coverage,Prime path testing,Path testing

So conditional coverage must be in White-Box Testing.


Black box testing is a method of software testing that examines the functionality of an application without peering into its internal structures or workings. Typical black-box test design techniques include:
Decision table testing,All-pairs testing,Equivalence partitioning,Boundary value analysis,Cause–effect graph,Error guessing

 

Volume testing  does performance testing for specific size.

Alpha testing is system testing by potential users/customers or an independent test team at the developers’ site.

Answer:

Related questions

0 votes
0 votes
3 answers
4