Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
Q 1/7
Score 0
Python is a ...
20
Operating System
Text Editor
Website
Programming Language
Q 2/7
Score 0
A computer program is a sequence of ??????????, written to perform a task on a computer
20
Instructions
Numbers
Files
Ideas
7 questions
Q.
Python is a ...
1
20 sec
Q.
A computer program is a sequence of ??????????, written to perform a task on a computer
2
20 sec
Q.
In Python, the print statement outputs text to ...
3
20 sec
Q.
What does this python code output to the screen?
a = 35
b = 7
c = a+b
print c
4
30 sec
Q.
What 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”
5
20 sec
Q.
What does this python code output to the screen?
a = "Ashton"
o = "on"
m = "Mersey"
print m,o,a
6
45 sec
Q.
What does the python statement raw_input allow us to do?