edited by
2,021 views
2 votes
2 votes

Consider the following :
 

A. Condition Coverage p. Black box testing 
B. Equivalence Class partitioning q. System testing
C. Volume Testing r. White box testing
D. Beta Testing s. Performance testing

Matching $A, B, C, D$ in the same order gives,

  1. r,p,s,q
  2. p,r,q,s
  3. s,r,q,p
  4. q,r,s,p
edited by

1 Answer

Best answer
9 votes
9 votes
  • Condition coverage test each one of the Boolean expression with values TRUE and FALSE. For this, tester should know code. Hence it is White box testing
  • Equivalence Class partitioning divides the input test data into each partition at least once of equivalent data from which test cases can be derived. Only input vales are needed, not code. Hence it is black box testing
  • Volume testing: Check system performance with increasing volumes of data in the database.
  • Beta Testing: It is a kind of system testing done at customer site to validate the usability, functionality

Answer is  r,p,s,q

selected by
Answer:

Related questions

5 votes
5 votes
2 answers
1
gatecse asked Dec 17, 2017
2,723 views
Which of the following related to snowflake schema is true?Each dimension is represented by a single dimensional tableMaintenance efforts are lessDimension tables are nor...
9 votes
9 votes
2 answers
2
gatecse asked Dec 17, 2017
3,706 views
Consider the following $C$ function#include<stdio.h int main(void) { char c[]="ICRBCSIT17" char *p=c; printf("%s",c+2[p]-6[p]-1); return 0; }The output of the program is ...
1 votes
1 votes
1 answer
4
gatecse asked Dec 17, 2017
2,350 views
Which of the following set of components is sufficient to implement any arbitrary Boolean function?$XOR$ gates, $NOT$ gates$AND$ gates, $XOR$ gates and $1$$2$ to $1$ mult...