0 of 7 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 7 Questions answered correctly
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
What is pseudocode?
Which of the following lines of code is the AQA pseudocode for printing out “hello world” to the user?
Which of the following lines of code is used for writing comments in AQA pseudocode?
Which of the following lines of AQA pseudocode will store user input into a variable called “temp”?
Which of the following lines of AQA pseudocode will create a variable called “myInput” and set the value to be “hello”?
What would be the output from the following AQA pseudocode program?
OUTPUT 'Daniel'
#OUTPUT 'Harper'
OUTPUT 'Veronica'
You have been asked to build a program to work out the average of two numbers.
Assemble the following pseudocode in the right order to build a working program.
firstNumber ← USERINPUT
OUTPUT result
secondNumber ← USERINPUT
result ← (firstNumber + secondNumber) / 2
View Answers: