Question: What is the preferred way to create an immutable variable of type long?

  1. `var longInt = 10L`
  2. `const long longInt = 10`
  3. `val longInt = 10L`
  4. `val longInt:Long = 10`

Answer: The correct answer of the above question is Option C:`val longInt = 10L`