Question: Both const and @JvmField create constants. What can const do that @JvmField cannot?

  1. `const` is compatible with Java, but `@JvmField` is not
  2. The compiler will inline const so it is faster and more memory efficient
  3. Virtually any type can be used with const but not `@JvmField`
  4. const can also be used with mutable types

Answer: The correct answer of the above question is Option B:The compiler will inline const so it is faster and more memory efficient