Complete the test plan for the program shown in Figure 1.
Figure 1
valid_entry = False
while valid_entry == False:
score = int(input("Enter a level score (20 to 50): "))
if score >= 20 and score <= 50:
valid_entry = True
print("Score accepted")
else:
print("Error: Score out of range")
| Test type | Test data | Expected result |
|---|---|---|
| Normal data | 35 | "Score accepted" displayed |
| Invalid data | (a) | (b) |
| Boundary data | (c) | (d) |