(Choose 1 answer)
Consider the following pseudocode:declare a queue of characters
while(there are more characters in the word to read)
{read a character if a character is '*' then
dequeue the queue
else
enqueue the character into the queue
}
while(the queue is not empty)
dequeue and write the dequeued character to the screen
What is written to the screen for the input "HowAre***You**To****Day"?
A. yaDoT
B. ToDa
C. oDay
D. ToDay
Exit 42