Question:

A normal linear queue, if implemented using an array/list of size LIMIT, gets full when :

Updated On: Apr 19, 2024
  • front =rear + 1
  • rear = front
  • front (rear + 1)% LIMIT
  • rear = LIMIT-1
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

The correct option is(D):rear = LIMIT-1
Was this answer helpful?
0
0