In Kotlin, how do you declare a list that cannot be modified? - Study24x7
Social learning Network
5 followers study24x7 15 Oct 2024 11:01 AM study24x7 study24x7

In Kotlin, how do you declare a list that cannot be modified?

A

val list = listOf(1, 2, 3)

B

val list = mutableListOf(1, 2, 3)

C

var list = arrayListOf(1, 2, 3)

D

var list = mutableListOf(1, 2, 3)

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles