Font size
WorksheetsPYTHON QUIZ 1 (BASICS)
Total questions: 25
Worksheet time: 27mins
What Symbol do you use to create a Variable?
+
-
=
" "
What is a Variable?
A storage area for values
A method of adding numbers together
Displaying text on the screen
Saving your work
An integer is what?
Text
Decimal
Whole Number
True/False
A Float is what?
Text
Decimal
Whole Number
True/False
A Boolean is what?
Text
Decimal
Whole Number
True/False
A String is what?
Text
Decimal
Whole Number
True/False
We can use Python to create what..?
Games
Calculators
Booking Systems
Shopping lists
What would be the output?
x = "Dave"
print ("Paul")
Dave
Fred
Paul
Bryan
x = 5
y = 3
print(x + y + 3)
5
3
7
10
What is the following doing?
age = int(Input("What is your age? ")
Asking the user for any answer
Asking the user to input their age
Asking the user for an integer
Asking the user for their name
What is the difference between 5 and 5.0?
No. They're both the same value.
Their different data types and will act different depending on the program.
True or false - Can you add string together?
False
True
What is the output?
First name = "Joe"
Second Name = "Blogs"
print(First name + Second name)
Joe Blogs
Joe + Blogs
First name Second name
Syntax Error
One of the following is correct?
print(James")
print"James"
Print("James")
print ("James")
What is this: 5
String
Boolean
Float
Integar
What is this: True
String
Boolean
Float
Integar
What is this: 174.42
String
Boolean
Float
Integar
What is this: "Table"
String
Boolean
Float
Integar
x = 5
y = 2
print (x*y)
20
10
15
5
x = input("What college do you attend?")
if x = "Riverside College"
print("Correct")
Else:
print("That is wrong")
This code would Error
True
False
What is the output
x = 5
if x == 5
print ("True")
Else:
False
True
False
Error
What is the output
x = 5
if x == 5
print (True")
Else:
False
True
False
Error
What is the output
x = 5
if x == 5
print ("True")
Else:
False
True
False
Error
What is the output
x = 5
if x =! 8
print ("True")
Else:
False
True
False
Error
Programming - What are you struggling with? (If anything). Is there anything you are confused over. Would you like any extra sessions?
