Year 7 Homework 11
Quiz by KS3 IT
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
10 questions
Show answers
- Q1What is Python (computing)?An algorithmA software packageA snakeA programming language30s
- Q2Which is the correct line of code for moving the turtle forward?turtle.forward(90)Turtle.forward(90)Turtle.left(90)turtle.left(90)30s
- Q3What does the 'print()' function do in Python?Imports external librariesPerforms mathematical calculationsDisplays output to the screenDefines a new variable30s
- Q4What python function accepts an input from a user?input()variableprint()data-type30s
- Q5What is a variable in programming?A data-typeA functionPermanent storage on the hard drive.A location in memory where a value can be stored while the program runs.30s
- Q6What does the word Iteration mean?Only run a section of code if a specific condition is true.A location in memory to store a value.Repeat a section of code.Error30s
- Q7Which code will loop forever?for i in range (100):for i in range (4):while number == 30while True:30s
- Q8Which code will iterate 10 times?for i in range(10):while number == 15:for i in range(5)while True:30s
- Q9What is Selection?A box of chocolatesCode that repeats.An algorithmWhen a section of code only runs if a condition is True.30s
- Q10Which line of code will change the direction of the turtle?turtle.speed(120)turtle.width(120)turtle.left(120)turtle.forward(120)30s