What is the smallest number of test cases required to Provide 100% bra

Loading

โœช Choose the correct option.

What is the smallest number of test cases required to Provide 100% branch coverage?

If(x>y) x=x+1;

else y=y+1;

while(x>y)

{

y=x*y; x=x+1;

}

A. 1
B. 2
C. 3
D. 4

Leave a Comment