Computer Science, asked by rajan8196880569, 5 months ago

General form of do while statement is ........ .

do
statements
while ( expression); *

True

False

Answers

Answered by bshashank954
0

Answer:

TRUE

Explanation:

The general syntax of the do - while is: do { statement(s) } while (expression); Instead of evaluating the expression at the top of the loop, do - while evaluates the expression at the bottom. Thus, the statements within the block associated with a do - while are executed at least once.

Similar questions