Each pass through a loop is called a/an@enumeration@iteration@culmination@pass through@B@
which looping process is best used when the number of iterations is known?@for@while@do-while@all looping processes require that the iterations be known@A@
If there is more than one statement in the block of a for loop, which of the following must be placed at the beginning and the ending of the loop block?@parentheses ( )@braces { }@brackets [ ]@arrows < >@B@
which looping process checks the test condition at the end of the loop@for@do-while@while@none of these@B@
The statement i++ means@i=+i@i=1+i@i=i-1@none the these@B@
which of the following means the same@i=i+1andi+=1@i++and ++i@i=i+1andi=+1@i++and i@A@
for(i<=10;i++)what is wrong in this statement@this is correct@there should  not be equalto sign@the variable is not initialised@there should be semi-colon at the end@C@
what does STL stands for@statuary time limit@standard template library@standard tasks lessions@stationary tool link@B@
Which of the following correctly describes C++ language@Statically typed language@Dynamically typed language@Both Statically and dynamically typed language@Type-less language@C@
In for loop "for(i=0;i<n;i++)",after complete execution of loop the value of i ?@n@n-1@n+1@none@B@
In while loop,condition checked________ execution of the loop@after@before@both@none@B@
Which of the following are loop @for@do-while@while@all@D@
Which of the following are correct about "for" loop ?@iterative loop@initialise,check condition,change the of variable@both@none@C@
After completing this for loop "for(i=0;i<100;i=i+2)",the value of i at last @99@100@98@none@C@
In do-while the condition is executed at least __________ times@0@1@2@none@B@
To increase the value of c by one which of the following statement is wrong?@c++;@c = c + 1;@c + 1 => c;@c += 1@C@ 
When following piece of code is executed, what happens?a= 3;a = b++;@a contains 3 and b contains 4@ a contains 4 and b contains 4@a contains 4 and b contains 3@a contains 3 and b contains 3@A@
What is the final value of x when the code int x; for(x=0; x<10; x++) {} is run?@10@9@0@1@A@
When does the code block following while(x<100) execute?@When x is less than one hundred@When x is greater than one hundred@When x is equal to one hundred@While it wishes@A@
Which is not a loop structure?@for@do while@while@repeat until@D@
How many times is a do while loop guaranteed to loop?@0@Infinitely@1@Variable@C@
Command to get out from a loop is@End@quit@break@continue@C@
For skip any staz of series command which is used@break@quit@end@continue@D@
Pre impliment is @i++@++i@none@both@B@
Post impliment is@i++@++i@none@both@A@
Which of the following is also called as post tasted loop@while@for@dowhile@none@C@
