Consider the following code snippet :
var tensquared = (function(x)
{
return x*x;
}
(10));
Will the above code work ?
Yes, perfectly
Error
Exception will be thrown
Memory leak
Answer : A
View More Related Question
1) Consider the following code snippet
function f() {};
The above prototype represents a
2) Consider the following code snippet :
var grand_Total=eval("10*10+5");
The output for the above statement would be :
3) What is the purpose of a return statement in a function?
Returns the value and continues executing rest of the statements, if any
Returns the value and stops the program
Returns the value and stops executing the function
Stops executing the function and returns the value
View Answer
4) Consider the following code snippet
function hypotenuse(a, b)
{
function square(x)
{
return x*x;
}
return Math.sqrt(square(a) + square(b));
}
What does the above code result?
Sum of square of a and b
Square of sum of a and b
Sum of a and b square
None of the mentioned
View Answer
5) Consider the following code snippet
o.m(x,y);
Which is an equivalent code for the above code snippet?