Computer Science, asked by hiteshkeshow, 18 days ago

What will be the output of the following program
X = 85
y = 97
if x>y and y>20 :

print("First check")
else:
if y>x or x>99:

print("Second check")
else:
print(" Last one!")

Answers

Answered by rockeynaidukoya
0

Answer:

first check

Explanation:

and statement will satisfy one condition it will print the result

Answered by bhikanbhoye
0

Answer:

second will be right last one

Similar questions