An else branch runs when no test above it is true.
Circle one: True False
The temperature is 20. The program runs: if temperature < 32, print a snow jacket warning. What prints?
How many branches run in one pass through a chain?
A grade chain tests A at 90, B at 70, else Fail. The mark is 82. What prints?
A program labels a number positive, negative or neutral with a chain. The number is -5. What prints?
Why must the A test sit above the B test in a grade chain?
A whole if and else only sets ok to true when users > 100. Which line replaces it?
A chain tests mark >= 70 before mark >= 90, and a 95 prints B. What is the fix?