Convert algorithms 1 (Edexcel GCSE Computer Science): Flashcards
📚Flashcards
Practise the cards
11 cards from this deck
ShowHide
Practise the cards
11 cards from this deck
Sequence in algorithm conversion
Sequence in algorithm conversion
Following steps in the correct order
How Python executes code
How Python executes code
Top to bottom, like following flowchart arrows
Flowchart shape for input/output
Flowchart shape for input/output
Parallelogram
Python function for input symbols
Python function for input symbols
input()
Python function for output symbols
Python function for output symbols
print()
Oval shapes in flowcharts represent
Oval shapes in flowcharts represent
Start and stop points
Start/stop symbols in Python code
Start/stop symbols in Python code
No code needed - just logical markers
Data type returned by input()
Data type returned by input()
String (text)
Function to convert to whole numbers
Function to convert to whole numbers
int()
Function to convert to decimal numbers
Function to convert to decimal numbers
float()
Why convert input for maths
Why convert input for maths
input() gives text; calculations need numbers
