Q. What is the output of this code?
Code:
var_dump(null == false);
β
Correct Answer: (A)
bool(true)
Explanation: When using == operator, null is considered equal to false.