140k views
0 votes
If you have an if/else if/else code sequence with 4 blocks, what is the minimal number of input values that you should use to test your code?

1 Answer

3 votes

Answer:

4 is the correct answer for the above question.

Step-by-step explanation:

  • If the if-else sequence has 4 blocks then it will be designed like if, else-if, else-if and then else which made 4 blocks which are as follows:-
  1. The first block is an if block.
  2. Then the second block is an else-if block.
  3. The third block is also else-if block and
  4. The fourth block else blocks.
  • So there is a need of 4 value (one value for each case) to test the application which is defined in the above scenario.
  • It is because when the first if statement is false then the first else-if statement is executed and when the first else statement is false then the second else-if statement is executed and when it is false then the else statement will executed.
User Hofshteyn
by
6.5k points