NEW
Font size
WorksheetsSTEM 7 Q3 Quiz 1
Total questions: 20
Worksheet time: 10mins
Numbers and Text are a type of?
Alphabet
Song
Video
Data
Text can be used in math operations
Yes
No
"9" is an example of a number
Yes
No
Only numbers can be used in a math operation
Yes
No
Output means show something
Yes
No
print(value)
The code above is the correct way to output something
Yes
No
print (2 + 3)
The code above will output 5
Yes
No
print("9 + 3")
What is the expected output of the code above
"9 + 3"
Error
9 + 3
12
print("12" + 3)
What is the expected output of the code above
15
123
Error
12 + 3
They represent the data
Numbers
Texts
Variables
Integers
x = 10
What is x?
Variable value
Variable operation
Variable name
Data
x = 20
y = x + 5
What is the value of y?
25
x + 5
205
20 + 5
It means changing the data type to another
Type Casting
Magic Casting
Variable Casting
Data Casting
Integers are whole numbers
Yes
No
The keyword for String is string
Yes
No
num = int(10)
What is the data type of variable num?
Integer
Intelligence
International
int
num = str("10")
print(num + "10")
What is the expected output of the code above
20
10 + 10
num + 10
1010
x = int(5)
print(5 + x)
What is the expected output of the code above
10
5 + x
55
5 + 5
a = float(9.5)
b = int(a)
print(b)
What is the expected output of the code above
9.5
a
9
b
g = str("5")
print("6.4" + g)
11.4
6.4 + 5
11
6.45
