Q. What will be the output of: echo null ?? 'PHP'; (A) null (B) PHP (C) Error (D) 0 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) PHP Explanation: Null coalescing operator returns the right value if the left is null.