A common question about using both Kotlin and Java is whether there are performance impacts that come with using two languages. Thankfully, this is not a problem. Because both Kotlin and Java compile down to common JVM bytecode, the JVM doesn't really see them as separate languages. This means there are no interop layers or other bridging that might slow down the runtime performance. At runtime, Kotlin should be just as efficient as Java.