What is the data type of the following value: "Hello"
String
Evaluate the following expression: 10 - 3
7
If the variable kip is holding a value of 10 and the variable zam is holding a value of 2, what does the following expressions evaluate to?
kip + zam
12
What value is stored in the variable(s) when the following program finishes running?
1 pizza = "yuck"
2 pizza = "yum"
"yum"
What is the data type of the following value? 5
Integer
Evaluate the following expression: "boat" + "house"
"boathouse"
If the variable kip is holding a value of 10 and the variable zam is holding a value of 2, what does the following expressions evaluate to?
zam - kip
-8
What value is stored in the variable(s) when the following program finishes running?
1 bob = "hi"
2 jo = "good"
3 bob = "bye"
4 bob = jo + bob
jo: "good"
bob: "goodbye"
What is the data type of the following value? -17.2
Float
Evaluate the following expression: "b" + str(4)
"b4"
If the variable kip is holding a value of 10 and the variable zam is holding a value of 2, what does the following expressions evaluate to?
zam + kip * zam
22
What value is stored in the variable(s) when the following program finishes running?
1 zig = 5
2 zag = zig + 2
3 zig = zig + zag
zag: 7
zig: 12
What is the data type of the following value? True
Evaluate the following expression: 12 % 5
2
If the variable kip is holding a value of 10 and the variable zam is holding a value of 2, what does the following expressions evaluate to?
kip % zam
0
What value is stored in the variable(s) when the following program finishes running?
1 fly = "to" + "day"
2 zow = 4 - 1
3 fly = 1 + zow
4 zow = str(fly) + "now"
fly: 4
zow: "4now"
What is the data type of the following value? "158"
String
str(2+ (8 % 3)) + "mula"
4mula
If the variable kip is holding a value of 10 and the variable zam is holding a value of 2, what does the following expressions evaluate to?
kip % (2 * zam)
2
1 fuzz = 5
2 clip = fuzz + 2
3 fuzz = clip + 1
4 clip = "c" + "ya"
5 fuzz = fuzz + 1
6 fuzz = fuzz + 1
7 fuzz = fuzz + 1
clip = "cya"
fuzz = 11