Computer Science, asked by akanksharaj3618, 6 months ago

22. Find the output:-
1 point
a=5
b=1
if a>=b:
print('First
if a==b:
print('Second)
elif a<=b:
print('Third')
else:
print('Extra'​

Answers

Answered by BrainlyProgrammer
1

Answer:

Output: First

Explanation:

5>=1..... Condition is true....Hence it will print "First"

Answered by DARK1238DEVIL
0

Answer:

output=FIRST

Explanation:

you all know that 5 is greater than 1 .

when you assign 5 to a

and 1 to  b

then flowing to the first statement a>=b

means 5>=1

so , the program print as the output FIRST

Similar questions