Computer Science, asked by 2362swetagupta, 2 months ago

List the decision making statement in QBASIC.​

Answers

Answered by Anonymous
2

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