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
The correct answer is: BEGIN DECLARE name [20] INPUT name PRINT name END.