Multiple choice technology operating systems

Which of the following is a synchronization mechanism?

  1. Bakery Algorithm

  2. Bankers Algorithm

  3. Round Robin Algorithm

  4. LRU Algorithm

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The Bakery Algorithm is a mutual exclusion algorithm used for process synchronization in critical sections. It ensures that processes take turns accessing shared resources by assigning numbers and waiting their turn. Bankers Algorithm is for deadlock avoidance, Round Robin is a CPU scheduling algorithm, and LRU is a page replacement algorithm.