Which of the following is the correct syntax of the 'do-while' loop?

97. Which of the following is the correct syntax of the "do-while" loop?

  1. do{ //Body of the loop }while(condition);
  2. dowhile(condition){ //Body of the loop };
  3. do while(condition){ //Body of the loop };
  4. do{ //Body of the loop }while(condition)

Answer: A) do{ //Body of the loop }while(condition);

Explanation:

The 1st option is correct.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.