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
1
Answer:
Output: First
Explanation:
5>=1..... Condition is true....Hence it will print "First"
Answered by
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