Computer Applications
Fill in the blanks:
_________ loop checks the condition first before its execution.
Java Iterative Stmts
23 Likes
Answer
while
Answered By
2 Likes
Related Questions
Fill in the blanks:
_________ loop is called an exit controlled loop.
Fill in the blanks:
_________ loop executes at least once, if the condition is false.
Fill in the blanks:
To find the sum of any ten numbers, the loop will run _________ times.
The following is a segment of a program.
x = 1; y = 1; if(n>0) { x = x + 1; y = y + 1; }
What will be the value of x and y, if n assumes a value:
(i) 1
(ii) 0