One of the special feature of an interpreter in reference with the for loop is t

Home | Discussion Forum

One of the special feature of an interpreter in reference with the for loop is that

View More Related Question

1) 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?

2) One of the special feature of an interpreter in reference with the for loop is that

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

4) Among the keywords below, which one is not a statement?

5) What will happen if the body of a for/in loop deletes a property that has not yet been enumerated?

UP Gk Online Test

taiyari24hour.com