answersLogoWhite

0

These statements are called conditionally executed statements because the may or may not be executed. They will be executed while the boolean (true/false) statement in the beginning of the loop is true, but will not be executed when statement is false.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What are the statements executed within a loop collectively known as?

The body of the loop.


Can modules be called from a statements in the body of any loop?

true


What are the statements that appear between the while and the end while clauses called?

Body of the loop


What the difference between pretest loop and posttest loops?

The difference is that pre means before and post means after in Latin so it's tested before or after. :)


Is do-while loop executed only if the condition is true?

First the body is executed, then the condition gets checked.


What is difference between for loop and do-while loop?

The do loop is similar to the forloop, except that the expression is not evaluated until after the do loop's code is executed. Therefore the code in a do loop is guaranteed to execute at least once. The following shows a do loop in action: do { System.out.println("Inside do while loop"); } while(false); The System.out.println() statement will print once, even though the expression evaluates to false. Remember, the do loop will always run the code in the loop body at least once. Be sure to note the use of the semicolon at the end of the while expression.


In phenylketonuria what amino acid becomes conditionally essential?

In phenylketonuria, the amino acid phenylalanine becomes conditionally essential. This is because the body is unable to break down phenylalanine properly, leading to an accumulation of phenylalanine in the blood and potentially toxic levels in the brain. Dietary restriction of phenylalanine is necessary to prevent health complications in individuals with phenylketonuria.


What are Statements that are true about body mass index?

It correlates with disease risks


Does The statements within a while loop execute at least once?

No. If the loop condition is not satisfied then the loop would not be executed even once. while(condition) { ..... /statements ..... } here,when the condition is true then the statements will be executed. Otherwise they would be skipped without being executed. Only for do.. while loops this execution at least once holds good.


How is proper body alignment in ballet executed?

proper body alignment in ballet is executed by tucking in your pelvis so your bottom does not stick out and straightening your spine. then, higher your chin and stand tall and straight. :) from a 7 year ballerina.


In C programming language what are the so called functions statement statement block function block and expressions?

Statements are composed from expressions. A semi-colon turns an expression into a statement. A function is not a statement it is a type definition. A statement block is a compound statement, one or more statements delimited by braces, {}. A function block is the body of a function. The body must be enclosed in braces, {}.


What is the body of a loop?

The "body" of a loop is the code being executed on each iteration.while(x < 10) {// beginning of bodydoStuff();printStuff();doOtherStuff();++x;// end of body}