What does the expression null == undefined return in JavaScript?
A). 1
B). 0
C). undefined
D). null
Which of the following statements is true regarding the behavior of 'Undefined' and 'Null' in JavaScript?
A). Undefined and Null are both falsy values in JavaScript.
B). Undefined and Null are both truthy values in JavaScript.
C). Undefined and Null have the same data type in JavaScript.
D). Undefined and Null cannot be compared in JavaScript.
Which of the following is a valid use case for 'Null' in JavaScript?
A). Storing default values in variables.
B). Clearing or resetting object references.
C). Assigning placeholders in arrays.
D). Checking if a variable exists.
Which of the following correctly describes the purpose of 'Null' in JavaScript?
A). Null is used to represent an empty array.
B). Null is used to indicate that a variable is uninitialized.
C). Null is used to represent an intentional absence of value.
D). Null is used to check for object properties.
How do you assign a variable to have a value of 'Null'?
A). Using the assignment operator =.
B). Using the null keyword.
C). Using the undefined keyword.
D). Using the void operator.
Which statement best describes the relationship between 'Undefined' and 'Null' in JavaScript?
A). Undefined and Null are interchangeable and can be used interchangeably in code.
B). Undefined and Null are distinct values representing different states in JavaScript.
C). Undefined is a subset of Null, encompassing all possible values of Null.
D). Null is a subset of Undefined, encompassing all possible values of Undefined.
What does the expression typeof null return in JavaScript?
A). null
B). object
C). undefined
D). function
What is the result of the expression typeof undefinedVariable if undefinedVariable is not declared?
A). object
B). function
C). undefined
D). null
What happens when a function does not explicitly return a value in JavaScript?
A). It returns 'null'.
B). It returns 'undefined'.
C). It throws an error.
D). It returns 'object'.
What is the purpose of using 'Null' over 'Undefined' in certain programming scenarios?
A). To represent an intentional absence of value or object reference.
B). To assign default values to variables.
C). To represent uninitialized variables.
D). To check for variable existence.