Choose the correct Pseudo code to store names in an array and display a name.
Answer options
A
BEGIN
DECLARE name [20]
INPUT name
PRINT name
END
B
Incorrect pseudocode with wrong initialization/order
C
Incorrect pseudocode with missing loop or condition
D
Incorrect pseudocode with wrong output statement
Correct answer: BEGIN DECLARE name [20] INPUT name PRINT name END
Explanation
Quick AnswerThe correct answer is BEGIN DECLARE name [20] INPUT name PRINT name END because it directly addresses the core logic of Essentials.
The correct answer is: BEGIN DECLARE name [20] INPUT name PRINT name END.