Font size
WorksheetsPseudocode Revision Quiz
Total questions: 10
Worksheet time: 17mins
Finish the pseudocode to create a loop that stops after a certain condition is met
_____ password != "password123"
password=input("Guess again")
end_____
(a)
Which of these is correct to cast TRUE
bool(" ")
str(" ")
int(" ")
real(" ")
How do you represent the action of displaying output? (more than 1)
WRITE
DISPLAY
SHOW
OUTPUT
What is a constant?
What are the 5 data types?
What is wrong with this pseudocode? (more than 1)
if hour < 12:
print("good morning)
: instead of THEN
no capital letter for good morning
missing speech marks
no indentation
print instead of output
What is casting?
What are the three types of loops?
WHILE
SWITCH
DO
FOR
IF
what is used to concatenate the code print("Hello" (a) name)
What is a nested loop?
