Kotlin - Operators and Expressions
Which Kotlin operator should you use to check if two strings have the same content?
== checks structural equality, meaning it compares the content of objects like strings.=== checks if both variables point to the same object, not content. != is for inequality, and += is an assignment operator.== to compare string content -> Option C15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions