What are the three important manipulations done in a for loop on a loop variable

Home | Discussion Forum

What are the three important manipulations done in a for loop on a loop variable?

View More Related Question

1) Consider the following code snippet

while (a != 0)
{
if (a == 1)
continue;
else
a++;
}

What will be the role of the continue keyword in the above code snippet?

2) Consider the following code snippet

function printArray(a)
{
var len = a.length, i = 0;
if (len == 0)
console.log("Empty Array");
else
{
do
{
console.log(a[i]);
}
while (++i < len);
}
}

What does the above code result?

3) Consider the following code snippet

function tail(o)
{
for (; o.next; o = o.next) ;
return o;
}

Will the above code snippet work? If not, what will be the error?

4) What will be the step of the interpreter in a jump statement when an exception is thrown?

5) What are the three important manipulations done in a for loop on a loop variable?

UP Gk Online Test

taiyari24hour.com