1. Computer Science Engineering (CSE)
  2. Data Structures (DS)
  3. Linear Data Structures -Stacks and Queue...
  4. A normal queue, if implemented using an ...
Q.

A normal queue, if implemented using an array of size MAX_SIZE, gets full when

A. Rear = MAX_SIZE – 1
B. Front = (rear + 1)mod MAX_SIZE
C. Front = rear + 1
D. Rear = front
Answer» A. Rear = MAX_SIZE – 1
View all MCQs in:   Data Structures (DS)

Discussion