Computer Science, asked by TbiaSamishta, 1 year ago

In do-while loop minimum number of execution of statements is 1. State whether the statement is True (or) False And Justify it

Answers

Answered by Rudhraa
0
true....since do while is an exit control loop...the body of loop is executed once then the check is taken into care so it executes atleast once
Answered by Sidyandex
0

Yes, in do-while loop minimum number of execution of statements is 1.

The loop can be 0 as well if the ‘do’ condition is not talked about then the while condition won’t be followed up.

The minimum time of the while condition only will be 0 whereas do-while condition will have a minimum term of 1.

Similar questions