Q.1
A function with no return value is called
Q.2
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?
Q.3
The function definitions in JavaScript begins with
Q.4
Consider the following code snippet
function printprops(o) 
{
  for(var p in o)
  console.log(p + ": " + o[p] + "n");
}
What will the above code snippet result ?
Q.5
Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?
Q.6
Consider the following code snippet :
var grand_Total=eval("10*10+5");
The output for the above statement would be :
Q.7
When does the function name become optional in JavaScript?
Q.8
Consider the following code snippet :
var a = []; 
a.unshift(1); 
a.unshift(22);
a.shift(); 
a.unshift(3,[4,5]); 
a.shift(); 
a.shift();
a.shift();
The final output for the shift() is
Q.9
The primary purpose of the array map() function is that it
Q.10
What is the purpose of a return statement in a function?
Q.11
What will happen if a return statement does not have an associated expression?
Q.12
The reduce and reduceRight methods follow a common operation called
Q.13
The method or operator used to identify the array is
0 h : 0 m : 1 s