Computer Science for IGCSE & O level - Programming (Section 15 - No. 5)

If age is 16, what output will the following code produce? ``` IF age >= 17 THEN Print "You are an adult" ELSE Print "You are a child" ENDIF ```
You are an adult
You are a child
The program will throw an error.
No output will be produced.

Explanation

Because 16 is not greater or equal to 17, the ELSE block will be executed.

Comments (0)

Advertisement