Identify errors IF A=5Rs THEN GOTO 60
Answers
Answered by
24
Answer:
A string used for a string comparison should always be in quotes. The numbers don't need to be added in quotes. Here 5Rs is a string and needs to be put in quotes. The correct statement would be
IF A="5Rs" THEN GOTO 60
or
IF A=5 THEN GOTO 60
The current statement would generate an error
Explanation:
Answered by
2
Answer:
Identify errors IF A=5Rs THEN GOTO 60
Similar questions