Advanced Java
Q88 / 100

What is the significance of Project Loom's virtual threads?

Correct! Well done.

Incorrect.

The correct answer is B) They are JVM-managed lightweight threads that enable high concurrency without the overhead of OS threads

B

Correct Answer

They are JVM-managed lightweight threads that enable high concurrency without the overhead of OS threads

Explanation

Virtual threads (JEP 444, GA in Java 21) are cheap, JVM-scheduled threads. Millions can exist simultaneously, unblocking blocking I/O calls without consuming OS threads.

Progress
88/100