B is inserted at index 1 (back) of the circular queue. back is incremented by 1 using modulo arithmetic to handle wrap-around. count is also incremented.
From previous slide: front = 0, back = 1, count = 2 queue
front = 0
7 0
A back = 2
6 1
B C
back = (1 + 1) % 8
back = 2 % 8
back = 2 5 2
0 queue[2] = C
8√ 2 4 3