Predict the output:
a=10
b=20
c=30
if a>b
print(a)
elif c>b
print(c)
else:
print(b)
30 10
20 none of the above
please give correct answer
Answers
Answered by
1
Answer:
Hope it's helpful to you please mark as brainlist
Attachments:
Answered by
0
Answer:
OUTPUT=30
Explanation:
a=10
b=20
c=30
FIRST OPERATION
whether a >b means
10>20 ?
= FALSE
SECOND OPERATION
whether c>b means
30>20?
=TRUE
then here program stops execution and print the above output (30).
Similar questions