Q. Which operator is used for strict comparison (value and type) in PHP?
β
Correct Answer: (B)
===
Explanation: The === operator checks both value and type. == checks only value, != checks inequality of value, and !== checks inequality of both value and type.