dict1 = {'cow': 17, 'chicken': 88, 'rooster': 6}
dict1['17']
Question options:
error
cow
rooster
chicken
on
a = [5, 10, 15]
b = a.copy()
c = list(a)
a[0] = 50
print(b)
Question options:
error
[5, 10, 15]
[50, 10, 15]
a
on
x=1+\
4
print(x)
Question options:
, 5
error
4
on
7+
11
Answer: 18
2/2
Question 5
points
list1 = ['phone', 'wallet', 'keys', 'hat']
list1.insert(2, 2)
print(list1)
Question options:
['phone', 'wallet', 2, 'keys', 'hat']
error
['phone', 'wallet', 'keys', 'hat', 'keys']
['phone', 'wallet', 'keys', 'hat', 'phone', 'wallet', 'keys', 'hat']
on
type(7 + 1.1)
Question options:
float
int
, error
str
on
21//2
___10___
n8 2/
x = 1,000,000
print(x)
Question options:
1,000,000
(1, 0, 0)
1000000
error
on
Answer: tuple
2/2
Question 10
points
18 % 4
___2___
n 11 2/
Following this code, what would be the value of c?