
Year 9 Python Quiz 1
Quiz by Chris Eccles
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
7 questions
Show answers
- Q1Python is a ...Operating SystemText EditorWebsiteProgramming Language20s
- Q2A computer program is a sequence of ??????????, written to perform a task on a computerInstructionsNumbersFilesIdeas20s
- Q3In Python, the print statement outputs text to ...The printerThe screenA fileThe internet20s
- Q4What does this python code output to the screen? a = 35 b = 7 c = a+b print c35742c30s
- Q5What type of variable are those called players_name and players_team in the code below? players_name = “Wayne Rooney” players_age = 29 players_ team = “Manchester United”StringNameWordsInteger20s
- Q6What does this python code output to the screen? a = "Ashton" o = "on" m = "Mersey" print m,o,a"Ashton on Mersey"Mersey on AshtonAshton on Merseymoa45s
- Q7What does the python statement raw_input allow us to do?Open a fileAsk the user a question and then store their answerTell the user what day it isPrint to the screen30s