Q. What will be the output of var_dump(null == false)?
β
Correct Answer: (A)
bool(false)
Explanation: null is not equal to false in PHP when using loose comparison.