With x = 5 and y = 8 and z = 5, what is the value of the variable z after the execution of the following pseudo-code:
If ((5 <= 20) && (8 >= 10)) Then
z = 5 + 1
Else
z = 5 – 1
End If
is z= to 4?
If ((5 <= 20) && (8 >= 10)) Then
z = 5 + 1
Else
z = 5 – 1
End If
is z= to 4?
Comment