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 8 Question 94 Discussion

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

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

#include

#include

#include

using namespace std;

templatestruct Out {

ostream & out;

Out(ostream & o): out(o){}

void operator() (const T & val ) { out<

int main() {

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

int t2[]={6,10,8,7,9};

vector v1(10);

sort(t1, t1+5);

sort(t2, t2+5);

merge(t1,t1+5,t2,t2+5,v1.begin());

for_each(v1.begin(), v1.end(), Out(cout));cout<

return 0;

}

Program outputs:

Show Suggested Answer Hide Answer
Suggested Answer: D

Contribute your Thoughts:

Tanja
6 days ago
The code seems to be merging two sorted arrays into a vector. The output should be the merged and sorted elements, so I'll go with A.
upvoted 0 times
...
Galen
13 days ago
I'm not sure, but I think the answer might be E) compilation error because the code is missing the include for the merge function. Without it, the code won't compile.
upvoted 0 times
...
Quentin
14 days ago
I agree with Valene. The code uses the sort function to sort the arrays and then merges them using the merge function. The output should be in ascending order.
upvoted 0 times
...
Valene
16 days ago
I think the answer is A) 1 2 3 4 5 6 7 8 9 10 because the code sorts the arrays t1 and t2 and then merges them into vector v1 in ascending order.
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