Answer is:
All of the above
Answer is:
All of the above
Explanation:
In for loop
* Index value is retained outside the loop and can be changed from within the loop
* Body of the loop can be empty
* go to can be used to jump. out of loop
Answer is:
All of the above
Explanation:
In for loop
* Using break is equivalent to using a goto that jumps to the statement immediately following the loop
* Continue is used to by-pass the remainder of the current pass of the loop
* If comma operator is used, then the value returned is the value of the right operand
Answer is:
Both for loops can be nested & Nested for loop can't overlap
Answer is: