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 104 Discussion

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

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

#include

#include

int main ()

{

int t[]={1,2,3,4,5};

std::vectorv1(t,t+5);

std::vectorv2(v1);

v1.resize(10);

v2.reserve(10);

std::vector::iterator i = v1.begin();int ii = 0;

while (i != v1.end()) { std::cout<

i = v2.begin();ii=0;

while (i != v2.end()) { std::cout<

return 0;

}

Show Suggested Answer Hide Answer
Suggested Answer: E

Contribute your Thoughts:

Nichelle
2 days ago
Haha, I can already see the compiler throwing a fit at this code. Time to brush up on my C++ vector knowledge!
upvoted 0 times
...
Trina
12 days ago
Ah, the classic vector resizing and copying conundrum. I bet the answer has something to do with the difference between resize() and reserve().
upvoted 0 times
...
Micaela
18 days ago
This looks like a tricky one! I'm going to have to think through the memory management implications carefully.
upvoted 0 times
Howard
3 days ago
It will output 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
upvoted 0 times
...
...
Beth
20 days ago
I'm not sure, but I think the answer might be C) program outputs 1 1 1 1 1 1 1 1 1 1 1 2 3 4 5 because of the way the vectors are being manipulated.
upvoted 0 times
...
Andrew
21 days ago
I agree with Goldie, the code looks like it will not compile correctly.
upvoted 0 times
...
Goldie
25 days ago
I think the answer is B) compilation error because there seems to be an issue with the code.
upvoted 0 times
...

Save Cancel
az-700  pass4success  az-104  200-301  200-201  cissp  350-401  350-201  350-501  350-601  350-801  350-901  az-720  az-305  pl-300  

Warning: Cannot modify header information - headers already sent by (output started at /pass.php:70) in /pass.php on line 77