answersLogoWhite

0


Best Answer

multiple branching is done by using ON...GOTO statement that transfers control to any number of choices

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Statement used for multiple branching in BASIC?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is multiple branching in gwbasic?

In gw-basic, when program control is transferred depending on a certain condition, it is called conditional transfer of control. To transfer control from one point to multiple points is called multiple branching. Statement used in gw-basic for this purpose is ON.....GOTO. Syntax: ON numeric variable or expression GOTO n1, n2, n3,....... The range o value of numeric variable or expression is 0 t0 255. n1, n2 are valid line numbers where control will be transferred. If the value of numeric variable or expression is 1, the control will be transferred to line number n1, in case of 2 to n2 and so on.


What primitive control statement is used to build more complicated control statements in languages that lack them?

I think this is Branching


Why goto keyword not used in java?

Goto leads to morememory waste age and multiple branching occurs so memory is wasted


Which technique can be used to make multiple copies of a genewhat are the basic steps in this procedure?

Which technique can be used to make multiple copies of a gene? What are the basic steps in this procedure?


What is branching diagrams used for?

A branching tree diagram shows prbable evolutionary relationships among organisms


What is a branching diagram used for?

A branching tree diagram shows prbable evolutionary relationships among organisms


Is PCR the technique used to make multiple copies of even a fragment of DNA?

that is a true statement


Why are tabular keys used instead of branching keys?

Tabular Keys are used becasue they combine both Branching Keys and Multi-Access Keys


How are dichotomous keys and branching diagrams different?

dichotomus key is a tool that is used by the scientist can use to help identify a particular specimen while branching key is just branching into two.


What is a case statement used for in Oracle?

The Case Statement in Oracle is a command that evaluates a condition (or a sequence of conditions) for one or multiple expressions. According to the value of those expressions a corresponding statement is executed.


How are dichotomous keys and branching key diagram different?

dichotomus key is a tool that is used by the scientist can use to help identify a particular specimen while branching key is just branching into two.


How 'if' statement is different from a 'switch' statement in C language?

The if statement is used to select among two alternatives. It uses a boolean expression todecide which alternative should be executed. The switch statement is used to select among multiple alternatives. It uses an int expression to determine which alternativeshould be executed.