NEW
Font size
WorksheetsHomework 4- Data Types and Selection
Total questions: 10
Worksheet time: 5mins
What is the data type of the value `7.5` in Python?
String
Integer
Float
Boolean
Which of the following is a common syntax error in Python?
Forgetting to close a bracket
Using a variable without declaring it
Dividing by zero
Accessing an index out of range
What will be the output of the following code snippet? ```python if 2 < 4: print("Yes") else: print("No") ```
No
Yes
Error
Nothing
Which of the following is a string in Python?
`3.14`
`42`
`"Hello"`
`False`
What will be the output of the following code snippet? ```python x = 3 if x > 5: print("High") else: print("Low") ```
High
Low
Error
Nothing
Which of the following is a Boolean value in Python?
`0`
`"False"`
`False`
`1.0`
What will be the output of the following code snippet? ```python if True: print("Correct") else: print("Incorrect") ```
Correct
Incorrect
Error
Nothing
Which mode in Python requires you to Save before executing code?
Script Mode
Interactive Mode
Typing Mode
Who benefits from the use of comments?
Python
The program
The Human
The PC
The output of this code would be?
speed= 80
if speed > 70:
print "Speeding"
Else:
print "Continue"
Speed
Speeding
80
Continue
