1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
A
What is the output?
x = 100
if x>80:
print('A')
elif x>60:
print('B')
elif x>40:
print('C')
else:
print('D')
B
What is the output?
x = 70
if x>80:
print('A')
elif x>60:
print('B')
elif x>40:
print('C')
else:
print('D')
D
What is the output?
x = 10
if x>80:
print('A')
elif x>60:
print('B')
elif x>40:
print('C')
else:
print('D')
B
C
What is the output?
x = 10
if x>80:
print('A')
else:
print('B')
print('C')
A
B
C
C
B