Computer Applications
Which of the following statements uses a case called default?
- do-while
- while
- switch
- all of the above
Related Questions
To find the sum of whole numbers upto 10, a loop runs:
How many times the loop, for (i=1; ;i++), will execute, if there is no statement to terminate the loop?
A loop statement is given as:
for(i=10;i<10,i++) { Statement }
For how many times will the given loop statement be executed:
What do you understand by iterative process? How can it be resolved by using loop?