Multiple choice When linear queue of size MAXQUEUE were implemented in C, overflow occurs at Front = MAXQUEUE Rear = MAXQUEUE -1 Rear = Front Rear - Front + 1 = 0 Reveal answer Fill a bubble to check yourself B Correct answer Explanation In a linear queue implemented with an array of size MAXQUEUE, the rear pointer increments with each insertion. Overflow occurs when the rear pointer reaches the last index, which is MAXQUEUE - 1.