The following Queue is being represented by a circular representation in an array (front is currently 3, and back is currently 7).
0 1 2 3 4 5 6 7 8 9
6 11 24 56 77
F E
Show what this representation would look like after performing the following sequence of operations. (show where is the Font and where is the End after each operation).
a) enq(q, 79) 0 1 2 3 4 5 6 7 8 9.
b) enq(q, 50) 0 1 2 3 4 5 6 7 8 9.
c) enq(q, 45) 0 1 2 3 4 5 6 7 8 9.
d) deq(q, i) 0 1 2 3 4 5 6 7 8 9 10.