Essentials
primer-original-v2mediumEssentialsSoftware Fundamentalsprimer-original-v2

Essentials Practice Question

What will be the output for WHILE loop?

 

BEGIN

DECLARE number

SET number <-- 30

WHILE number>0

            number <-- number-4

END WHILE

PRINT number

END

Answer options

A
-2
B
FOR loop
C
WHILE loop
D
DO-WHILE loop

Correct answer: -2

Explanation

Quick AnswerThe correct answer is -2 because it directly addresses the core logic of Essentials.

This question has been retained as-is due to its unique context.

Related Essentials questions

Practice more Essentials questions

PrimerPrep has independently reviewed practice questions and coding exercises — all free.