Q. What is the output of var_dump(null == false)?
β
Correct Answer: (A)
bool(false)
Explanation: null is not equal to false using the loose equality operator.