Well done!

You have completed Logical Operators Quiz!

Quiz Question 1 of 5

Given the following Python code, what is the output?

a = 7
b = 0
c = 5
if not (a < b or c > a) and c:
   result = c
else:
   result = a

Choose the correct answer below:

Skip Quiz Review Instruction