Which snippet correctly shows setting the variable max to whichever variable holds the greatest value, a or b, using idiomatic Kotlin?
A. val max3 = a.max(b)
B. val max = a > b ? a : b
C. val max = if (a > b) a else b
D. if (a > b) max = a else max = b
Answer: Option C

Join The Discussion