Question:

The primary advantage of user-level threads over kernel-level threads is _______ .

Show Hint

User-level threads are more efficient in terms of context-switching, which is one of their key advantages over kernel-level threads.
Updated On: Jun 16, 2025
  • Lower context-switch overhead
  • Better parallelism on multicore CPUs
  • No need for synchronization
  • Higher priority scheduling
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

User-level threads have a lower context-switch overhead compared to kernel-level threads because context switching between user-level threads does not require kernel intervention. This makes user-level threads faster in terms of switching between them. The other options do not represent primary advantages of user-level threads.
Was this answer helpful?
0
0