Convert algorithms 1 (Edexcel GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
12 questions from this quiz
ShowHide
Practise the questions
12 questions from this quiz
What does 'sequence' mean when converting algorithms from flowcharts to Python?
What does 'sequence' mean when converting algorithms from flowcharts to Python?
Following steps in correct order
In which direction does Python read and execute your program?
In which direction does Python read and execute your program?
From top to bottom
Which flowchart shape is used to show input and output operations?
Which flowchart shape is used to show input and output operations?
Parallelogram
Which Python function do input symbols in flowcharts become?
Which Python function do input symbols in flowcharts become?
input()
Which Python function do output symbols in flowcharts become?
Which Python function do output symbols in flowcharts become?
print()
Which flowchart shape represents start and stop points?
Which flowchart shape represents start and stop points?
Oval
Do start and stop flowchart symbols need special Python code?
Do start and stop flowchart symbols need special Python code?
No, they're just logical markers
What type of data does input() always return in Python?
What type of data does input() always return in Python?
Text (string)
Which function converts text input to whole numbers?
Which function converts text input to whole numbers?
int()
Which function converts text input to decimal numbers?
Which function converts text input to decimal numbers?
float()
Why must you convert input data for mathematical calculations?
Why must you convert input data for mathematical calculations?
Python treats input as text
Which function can replace input() when reading from files?
Which function can replace input() when reading from files?
readline()
