Loading practice questions
Which keyword is used in Kotlin to declare a mutable variable?
Correct Answer: C — var
Explanation:
In Kotlin, the var keyword is used to create a mutable variable. You can change the value of a var after its initial assignment.