...
Software-Engineering
August 28, 2024
Software-Engineering
August 28, 2024
Software-Engineering
August 28, 2024
Software-Engineering
August 28, 2024

Software-Engineering

Question 210
Consider the method mcq ( ):
int mcq(boolean a, boolean b, boolean c, boolean d)
{
   int ans=1;
   if(a) { ans = 2; }
   else if (b) { ans = 3; }
   else if (c) {
                      if (d) { ans = 4; }
   return ans;
}
if
M1 = Number of tests to exhaustively test mcq( );
M2 = Minimum number of tests to achieve full statement coverage for mcq( ); and
M3 = Minimum number of tests to achieve full branch coverage for mcq( );
then (M1, M2, M3) = __________.
A
(16, 3, 5)
B
(8, 5, 3)
C
(8, 3, 5)
D
(16, 4, 4)
Question 210 Explanation: 

Correct Answer: A
Question 210 Explanation: 

Leave a Reply

Your email address will not be published. Required fields are marked *