Question: What is the preferred way to create an immutable variable of type long?
- `var longInt = 10L`
- `const long longInt = 10`
- `val longInt = 10L`
- `val longInt:Long = 10`
Answer: The correct answer of the above question is Option C:`val longInt = 10L`