Which of the following is used to declare an immutable variable in Kotlin?
const
let
var
val
Correct Answer: D — val
Explanation:
In Kotlin, val is used to declare an immutable (read-only) variable.