Algorithms (Edexcel GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
10 questions from this quiz
ShowHide
Practise the questions
10 questions from this quiz
What does selection allow a program to do?
What does selection allow a program to do?
Choose between two or more options
Which of these is NOT a fundamental building block of programming?
Which of these is NOT a fundamental building block of programming?
Compilation
What shape represents selection in a flowchart?
What shape represents selection in a flowchart?
Diamond
How many entry points must a selection diamond have in a flowchart?
How many entry points must a selection diamond have in a flowchart?
Exactly one
How many exit paths must a selection diamond have?
How many exit paths must a selection diamond have?
Exactly two
Which keyword suggests you need selection in an algorithm?
Which keyword suggests you need selection in an algorithm?
If
What Python structure is used to implement selection?
What Python structure is used to implement selection?
if...elif...else
What does 'elif' stand for in Python?
What does 'elif' stand for in Python?
Else if
What does the 'else' statement do in Python selection?
What does the 'else' statement do in Python selection?
Catches unmatched conditions
In the example, what displays if the number is 130?
In the example, what displays if the number is 130?
Medium
