What is displayed after line 6 is run?

```
1 queue list;
2 list.push(“eggs”);
3 list.push(“milk”);
4 list.push(“bread”);
5 list.push(“cheese”);
6 cout << line.size();
7 list.pop();
8 cout << list.front();
9 list.pop();
10 list.pop();
11 list.pop();
```

A. true
B. false
C. 0
D. 4

D

Computer Science & Information Technology

You might also like to view...

What is the code to print out the third character in a string variable named str?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

On a chart created in Excel, the vertical axis is called the ____.

A. x-axis B. y-axis C. data marker D. legend

Computer Science & Information Technology