Vidyalelo
Data Structure · Q30

Queues in Data Structures

Programming · Data Structure · question 30

Q30

How do you determine if a queue implemented using a circular array is empty?

A.
Check if the front and rear pointers are equal
Answer
B.
Check if the front pointer is null
C.
Check if the rear pointer is null
D.
Check if the queue size is zero

Answer: Option A

Solution

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