Loading practice questions
What is the difference between == and === in Kotlin?
(C) == checks structural equality, and === checks reference equality
Explanation:
In Kotlin, == checks for structural equality (equivalent content), while === checks for reference equality (whether both references point to the same object).