0
0
Kotlinprogramming~20 mins

Why operators are functions in Kotlin - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Kotlin Operator Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
What is the output of this Kotlin code using operator functions?
Consider this Kotlin code where operators are used as functions. What will be printed?
Kotlin
data class Point(val x: Int, val y: Int) {
    operator fun plus(other: Point) = Point(x + other.x, y + other.y)
}

fun main() {
    val p1 = Point(1, 2)
    val p2 = Point(3, 4)
    val p3 = p1 + p2
    println("(${p3.x}, ${p3.y})")
}
A(1, 2)
B(4, 6)
C(3, 4)
DCompilation error
Attempts:
2 left
💡 Hint
Remember that the plus operator calls the plus() function defined in the class.
🧠 Conceptual
intermediate
1:30remaining
Why does Kotlin treat operators as functions?
Why does Kotlin design operators like +, -, * as functions instead of special syntax?
ATo allow developers to define custom behavior for operators on their own types.
BBecause Kotlin does not support operator overloading.
CTo make operators slower but easier to read.
DTo prevent using operators with built-in types.
Attempts:
2 left
💡 Hint
Think about how you can add two custom objects using + in Kotlin.
🔧 Debug
advanced
2:00remaining
What error does this Kotlin code produce?
This Kotlin code tries to use the minus operator on a class without defining minus(). What error occurs?
Kotlin
class Counter(val count: Int)

fun main() {
    val c1 = Counter(5)
    val c2 = Counter(3)
    val c3 = c1 - c2
    println(c3.count)
}
ANullPointerException at runtime
BCompilation succeeds but prints 0
COutput: 2
DError: Operator '-' cannot be applied to 'Counter' and 'Counter'
Attempts:
2 left
💡 Hint
Check if the minus operator function is defined for the class.
📝 Syntax
advanced
1:30remaining
Which option correctly defines the times operator function in Kotlin?
Choose the correct syntax to define the * operator function for a class Vector.
Kotlin
class Vector(val x: Int, val y: Int) {
    // Define operator fun times here
}
Aoperator fun times(other: Vector): Vector = Vector(x * other.x, y * other.y)
Boperator fun times(other: Vector) Vector = Vector(x * other.x, y * other.y)
Coperator fun times(other Vector): Vector = Vector(x * other.x, y * other.y)
Dfun operator times(other: Vector): Vector = Vector(x * other.x, y * other.y)
Attempts:
2 left
💡 Hint
Remember the order: operator fun functionName(parameter: Type): ReturnType
🚀 Application
expert
2:00remaining
How many operator functions must be defined to support all arithmetic operators (+, -, *, /) for a class NumberBox?
If you want to support +, -, *, and / operators on your custom class NumberBox, how many operator functions must you define?
A2
B1
C4
D0
Attempts:
2 left
💡 Hint
Each operator corresponds to one operator function.