Computer Science, asked by paramjeetk444, 11 months ago

5. Which of the following is a loop statement?
(a) While
(b) Do-while
(c) For
State True (T) or False (F).
1. Initialization means assigning some values to a variable using assignment operators.
2. A conditional statement cannot be placed anywhere in the program.
3. Loop is a process of executing a statement repeatedly until a condition is met.
4. The do-while loop is an entry controlled loop.
5. The while statement is a jump statement.​

Answers

Answered by pushkart03
0

Answer:

1. false

2.false

3.true

4.false

5.true

Answered by Anonymous
0

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions