Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardKotlinJava interop JvmStatic JvmNameSingle-choice MCQ

A Kotlin object declaration exposes a function to Java. Without and with `@JvmStatic`, how is the function represented and called from Java?

object Config { fun load() {} @JvmStatic fun reload() {} }