Correct Answer: DFor decision coverage, each possible outcome of every decision must be exercised at least once. The pseudo code contains three decisions: Time < 12, Time > 12, and Time = 12. For the test case Time = 11, the outcomes are True for Time < 12, and False for both Time > 12 and Time = 12. For the test case Time = 15, the outcomes are False for Time < 12, True for Time > 12, and False for Time = 12. Thus, the True outcomes for Time < 12 and Time > 12, and the False outcomes for all three decisions (Time < 12, Time > 12, Time = 12) are covered, giving us 5 out of 6 possible decision outcomes. Therefore, the decision coverage is 83% or 5/6.