What is the result of invoking a function without parentheses, like myFunction?
A). The function gets executed
B). The function returns undefined
C). The function is referenced but not executed
D). The function throws an error
What is the main purpose of the () operator in JavaScript functions?
A). To define a function
B). To invoke a function
C). To declare a variable
D). To create an object
What is the output of function multiply(x, y) { return x * y; } var result = multiply(5, 10); console.log(result);?
A). 50
B). 510
C). undefined
D). multiply
What is the output of var test = function() { return 5; }; console.log(test());?
A). test
B). 5
C). undefined
D). function
How do you invoke a function named myFunction?
A). myFunction;
B). call myFunction();
C). myFunction();
D). myFunction[];
How do you invoke a method named greet on an object person?
A). person.greet;
B). person.greet();
C). greet(person);
D). persongreet;
How do you define and invoke a function to calculate the square of a number in one step?
A). var square = function(n) { return n * n; }; square(5);
B). (function(n) { return n * n; })(5);
C). function square(n) { return n * n; } square(5);
D). var square = (n) { return n * n; }; square(5);
Which of these is the correct way to define and immediately invoke a function?
A). function() { return 1; };
B). (function() { return 1; })();
C). function() { return 1; }();
D). function {}()
What will function greet() { console.log('Hi'); } var x = greet; x(); output?
A). Hi
B). undefined
C). x
D). greet
How can you invoke a function named init only once when the script runs?
A). init;
B). (init)();
C). init();
D). function init() {}();