(Choose 1 answer)
Consider the following pseudocode:
0
1
2
3
4
5
declare a queue of characters, which is implemented by circular array of size 6.
(1)
i
n
g
while(there are more characters in the word to read)
0
1
2
3
4
5
(2)
{read a character if a character is '*' then dequeue the queue else
i
n
g
enqueue the character into the queue }
(3)
0
1
2
3
4
5
How the queue looks like after processing the input
" Goo**dMor****ning**"?
i
n
g
(4)
0
1
2
3
4
5
A. (2)
Β. (1)
C. (3)
D. (4)
i
n
g