Answer:
С The player had 3 bonus round attempts and 7 of them earned extra points.
Step-by-step explanation:
Given
See attachment for correct code segment
Required
Which of the options is not possible?
From the question, we understand that:
--- attempt can only assume values 1, 2, 3 and 4
The following "if statement" is repeated three times
IF RANDOM[1,10] <= 7:
success = success + 1
This implies that the maximum value of the success variable is 3
The first printed value is the attempt variable
The second printed value is the success variable.
From the list of given options, (a), (b) and (d) are within the correct range of the two variable.
While (c) is out of range because the value printed for variable success is 7 (and 7 is greater than the expected maximum of 3)