Vidyalelo
Data Structure · Q44

Queues in Data Structures

Programming · Data Structure · question 44

Q44

How can you determine if a queue is full when using a fixed-size array implementation?

A.
By checking if the rear pointer is at the maximum capacity
B.
By checking if the front pointer is equal to the rear pointer
C.
By checking if the size equals the array size
Answer
D.
By checking if the array is null

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board