WorksheetsKS3 GCSE Computer Science (Programming / Python)
Total questions: 10
Worksheet time: 9mins
Python is a (a) level programming language?
What is the type of error you receive when the rules of the programming language have been broken?
sinful error
taxable error
syntax error
synwave error
Often programming can be done within an "IDE", but what does "IDE" stand for?
input data easily
initial design encoder
integrated development environment
inter dynamic execution
location in memory that we use to store data is known as a ....?
directory
variable
store
locatorator
If a variable value is changed from one type to another it is known as...?
converting
casting
switching
flipping
Which of the following means "not equal to"
<=
==
>=
!=
What would appear on the screen if the following code was run:
print ("Quiz"*3)
Quiz
Quiz
Quiz
Quiz*3
SyntaxError
QuizQuizQuiz
If the following code was run, what would be the output? :
print (8/4)
2
SyntaxError
2.0
"8/4"
What result would appear if you ran the following code:
carmodel = 'Ferrari'
print(type(carmodel))
<class 'int'>
<class 'str'>
carmodel
Ferrari
What should be written in the code where ???? on line 7 currently is:
elif
else
or
and
