The following flowchart represents: code block If condition is true condition If condition is false e for loop O do-while loop while loop if/else statement. Show transcribed image text The following flowchart represents: code block If condition is true condition If condition is false e for loop O do-while loop while loop if/else statement.
Answer
“do-while loop”
syntax:
do{
//statements
} while(condition);
So from syntax it is clear that do while first executes the loopthan checks the condition ,
it is guaranteed to
OR
OR