ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the difference between == and === in Kotlin?
Correct Answer: C — == checks structural equality, and === checks reference equality
In Kotlin, == checks for structural equality (equivalent content), while === checks for reference equality (whether both references point to the same object).