answersLogoWhite

0


Best Answer

Not "conditional BRANCH statement" but "conditional branch statement".

In computer code it means some branch (jump) instruction who's destination location depends on the result of some test before jumping.

conditional jump: IF a=something THEN GO TO (jump, branch) some location

unconditional jump: GO TO location (just do the jump)

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a conditional BRANCH statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Differentiate between conditional and unconditional controls in qbasic?

A 'conditional' statement is a logical test while unconditional statement will cause the computer to branch.


What can a conditional statement have?

A conditional statement uses the words if... Then


Also known as the if then statement?

Another name for that is the conditional statement.


What are the kinds of conditional statement in foxpro with syntax?

The conditional statement in foxpro is DID YOU GET IT


What type of statement uses if a then b?

Hypothesis followed by a conclusion is called an If-then statement or a conditional statement.


What is a conjunction of a conditional statement and its converse?

A biconditional is the conjunction of a conditional statement and its converse.


What is the conjunction of a conditional statement and its converse?

The conjunction of a conditional statement and its converse is known as a biconditional statement. It states that the original statement and its converse are both true.


Conditional statement inside a conditional loop?

int i = 100; while(i > 0) { // Conditional loop --i; if((i % 2) == 0) { // Conditional statement inside a conditional loop System.out.println(i + " is even."); } }


What is an if-then form statement?

conditional statement


The IF part of a conditional statement?

The IF part of a conditional statement sets the condition or criteria that needs to be met for the subsequent action to occur. It is the part that is evaluated as either true or false, determining the flow of the statement.


What is the statement that is found by switching the hypothesis and conclusion of a conditional statement?

the .... of a conditional statement is found by switching the hypothesis and conclusion .


What is the most common word that signals a conditional statement?

The most common word that signals a conditional statement is "if." It is used to introduce a condition that needs to be met in order for a certain action or result to follow.