How do you define a function in JavaScript?
A). function myFunction { }
B). function: myFunction() { }
C). function myFunction() { }
D). myFunction function() { }
What will be the output of the following code: function test() { return 'Hello'; } console.log(test());?
A). test
B). Hello
C). undefined
D). error
What is the scope of a variable declared within a function?
A). Global
B). Local
C). Block
D). Script
How do you call a method named greet that belongs to an object person?
A). person(greet);
B). person.greet();
C). greet.person();
D). call person.greet();
What happens if a function does not have a return statement?
A). It returns undefined
B). It throws an error
C). It returns null
D). It returns 0
How do you immediately invoke a function expression (IIFE)?
A). (function() { })();
B). function() { }();
C). (function() { }());
D). function() { }()
What is the purpose of the return statement in a function?
A). To stop the execution of the function
B). To return a value to the caller
C). Both A and B
D). Neither A nor B
How do you define a function with parameters in JavaScript?
A). function myFunction[] { }
B). function myFunction(parameters) { }
C). function myFunction{parameters}
D). function myFunction((parameters)) { }
Which statement correctly defines a function named sum that returns the sum of two parameters a and b?
A). function sum(a, b) { return a + b; }
B). function sum(a, b) { a + b; }
C). function sum(a, b) return a + b;
D). function sum(a, b) { return (a + b) }
Which of the following is a valid way to return multiple values from a function?
A). return a, b;
B). return [a, b];
C). return {a, b};
D). return (a, b);