In a circular queue, how do you increment the rear end of the queue? Q & A › Category: Data Structure › In a circular queue, how do you increment the rear end of the queue? -1 Vote Up Vote Down Admin Staff asked 4 years ago In a circular queue, how do you increment the rear end of the queue? a) rear++ b) (rear+1) % CAPACITY c) (rear % CAPACITY)+1 d) rear– Share this:TwitterFacebookWhatsAppPinterestLike this:Like Loading... 1 Answers 0 Vote Up Vote Down Admin Staff answered 4 years ago b) (rear+1) % CAPACITY Share this:TwitterFacebookWhatsAppPinterestLike this:Like Loading...