Q. What will be the output of: echo 5 . 3; ?
β
Correct Answer: (B)
53
Explanation: In PHP, the dot (.) is the string concatenation operator, so 5 . 3 results in the string '53'.