List the decision making statements in QBasic.
Answers
Answered by
0
Answer:
QBasic Two-way Decision
The IF statement always asks a question (usually about the number in a variable). ...
If the answer is TRUE only the true-branch is executed.
If the answer is FALSE only the false-branch is executed.
No matter which branch was chosen, execution continues with the statement after the END IF .
Answered by
1
Answer:
QBasic Two-way Decision
- The IF statement always asks a question (usually about the number in a variable). ...
- If the answer is TRUE only the true-branch is executed.
- if the answer is FALSE only the false-branch is executed.
- No matter which branch was chosen, execution continues with the statement after the END IF .
Similar questions