Inputs and Outputs (AQA GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
10 questions from this quiz
ShowHide
Practise the questions
10 questions from this quiz
What does input allow a program to do?
What does input allow a program to do?
Receive data from a user
What does output do in a program?
What does output do in a program?
Displays information to the user
Which keyword gets data from the user in AQA Pseudo-code?
Which keyword gets data from the user in AQA Pseudo-code?
USERINPUT
Which keyword displays data in AQA Pseudo-code?
Which keyword displays data in AQA Pseudo-code?
OUTPUT
Which Python function gets data from the user?
Which Python function gets data from the user?
input()
Which Python function displays results to the user?
Which Python function displays results to the user?
print()
What does float() do in Python?
What does float() do in Python?
Converts text to decimal number
Why does input usually need converting for calculations?
Why does input usually need converting for calculations?
It comes as text
What is the difference between constants and variables?
What is the difference between constants and variables?
Constants don't change, variables do
Which symbol is used for variable assignment in AQA Pseudo-code?
Which symbol is used for variable assignment in AQA Pseudo-code?
←
