Q. What will be the output of: echo 5 == '5'; (A) true (B) false (C) 1 (D) Error ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) 1 Explanation: == compares values only, so 5 == '5' is true and echo prints 1.