Advanced
Kotlin
Q99 / 100
What is Kotlin/Native and how does it differ from Kotlin/JVM?
Correct! Well done.
Incorrect.
The correct answer is B) A Kotlin backend that compiles to native machine code via LLVM, enabling standalone executables without a JVM with ARC-based memory management
B
Correct Answer
A Kotlin backend that compiles to native machine code via LLVM, enabling standalone executables without a JVM with ARC-based memory management
Explanation
Kotlin/Native uses LLVM for native compilation. Memory is managed with ARC (Automatic Reference Counting). Coroutines use a single-threaded model by default (strict immutability for sharing).
Progress
99/100