Examlex

Solved

What Is the Value of Z After the Following Code

question 21

Multiple Choice

What is the value of z after the following code is run?
Y = 0
Z = 0
For x in range(5,8) :
Z = max(x, y)
Y = y + x


Definitions:

Related Questions