Question: Both const and @JvmField create constants. What can const do that @JvmField cannot?
- `const` is compatible with Java, but `@JvmField` is not
- The compiler will inline const so it is faster and more memory efficient
- Virtually any type can be used with const but not `@JvmField`
- 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