Computer Science, asked by kkumari67731gmailcom, 1 month ago

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 nishunarula6
1

Answer:

Hope it's helpful to you please mark as brainlist

Attachments:
Answered by DARK1238DEVIL
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