Solved

Rewrite the Following Instructions Using a Single If- Else Statement

Question 11

Short Answer

Rewrite the following instructions using a single if- else statement.
if (X == 5)goto 50
goto 60
50 print(Z)
goto 100
60 print(Y)
100 ...

Correct Answer:

verifed

Verified

if (X == 5...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions