Examlex

Solved

What Would Be Printed If the Following Instructions Were Executed

question 9

Short Answer

What would be printed if the following instructions were executed?
X = 3
print(X)
Y = 5
if (X < Y):
print(6)
else:
print(7)
_________________


Definitions:

Related Questions