Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

C++ Institute Exam CPP Topic 6 Question 105 Discussion

Actual exam question for C++ Institute's CPP exam
Question #: 105
Topic #: 6
[All CPP Questions]

What happens when you attempt to compile and run the following code?

#include

#include

#include

#include

#include

using namespace std;

int main()

{

deque mydeck;list mylist; vector myvector;

queue first; queue second(mydeck);

queue third(second); queue > fourth(mylist);

fourth.push(10);fourth.push(11);fourth.push(12);

queue > fifth(myvector);

fifth.push(10);fifth.push(11);fifth.push(12); // Line I

while(!fifth.empty())

{

cout<

fifth.pop(); // Line III

}

while (!fourth.empty())

{

cout << fourth.front() << " ";

fourth.pop(); // Line IV

}

return 0;

}

Show Suggested Answer Hide Answer
Suggested Answer: D

Contribute your Thoughts:

Carri
24 hours ago
Hmm, this looks like a trick question. I'm going to guess that there's a compilation error on line I, since you can't push elements directly into a queue constructed from a vector.
upvoted 0 times
...
Miles
1 days ago
I'm not sure, but I think there might be a compilation error in line III.
upvoted 0 times
...
Thaddeus
5 days ago
I agree with Carla, the code looks fine to me.
upvoted 0 times
...
Carla
6 days ago
I think the answer is A) program outputs: 10 11 12 10 11 12.
upvoted 0 times
...
Aja
17 days ago
The program should compile and run without any issues. The output will be 10 11 12 10 11 12, as the code correctly creates and manipulates the `fifth` and `fourth` queues.
upvoted 0 times
Caitlin
6 days ago
The output will be 10 11 12 10 11 12, as the code correctly creates and manipulates the `fifth` and `fourth` queues.
upvoted 0 times
...
Marti
8 days ago
The program should compile and run without any issues.
upvoted 0 times
...
...

Save Cancel