Pythondex

Quiz

Control Flow Quiz

Which keyword in Python allows you to check multiple conditions after an initial if statement?

else
elif
for
while

What will be printed by the following code?

A
B
C
Error

Which of the following is the correct order of execution in a multi-branch conditional?

if → elif → else
else → elif → if
elif → if → else
if → else → elif