Repetition (Edexcel GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
11 questions from this quiz
ShowHide
Practise the questions
11 questions from this quiz
What is repetition in programming?
What is repetition in programming?
Doing same instructions multiple times
What is another term for repetition in programming?
What is another term for repetition in programming?
Looping
Which best describes condition-controlled repetition?
Which best describes condition-controlled repetition?
Don't know how many times to repeat
Which best describes count-controlled repetition?
Which best describes count-controlled repetition?
Know exact number of times beforehand
Which Python keyword is used for condition-controlled loops?
Which Python keyword is used for condition-controlled loops?
while
Which Python keyword is used for count-controlled loops?
Which Python keyword is used for count-controlled loops?
for
What flowchart symbol represents loops?
What flowchart symbol represents loops?
Diamond shape with backward arrow
Which scenario needs condition-controlled repetition?
Which scenario needs condition-controlled repetition?
Validating user input
Which scenario needs count-controlled repetition?
Which scenario needs count-controlled repetition?
Displaying exactly 10 search results
Which is a real-world condition-controlled example?
Which is a real-world condition-controlled example?
ATM asking for PIN until correct
Which is a real-world count-controlled example?
Which is a real-world count-controlled example?
Processing exactly 30 student records
