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 5 Question 83 Discussion

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

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

#include

#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[]={1,2,3,4,5,6,7,8,9,10};

int t2[]={1,2,3,4,5,6,7,8,9,10};

vector v1(t1, t1+10);

vector v2(t2, t2+10);

vector v3(10);

transform(v1.begin(), v1.end(), v2.rbegin(), v3.begin(), minus());

for_each(v3.rbegin(), v3.rend(), Out(cout));cout<

return 0;

}

Program outputs:

Show Suggested Answer Hide Answer
Suggested Answer: C

Contribute your Thoughts:

Reita
2 months ago
I'm still trying to figure out how to reverse a vector without getting a headache. This code is like a C++ ninja move - using rbegin() and rend() to access the elements in reverse order. Pretty slick, but I'm just going to guess and say B) 0 1. *shrugs*
upvoted 0 times
Bettina
23 days ago
The code will most likely display 0 1.
upvoted 0 times
...
Bettina
1 months ago
I believe the correct output is 0 1.
upvoted 0 times
...
Bettina
2 months ago
I think it will output 0 1.
upvoted 0 times
...
...
Jolanda
2 months ago
Whoa, this is some serious C++ STL magic! I'm still trying to wrap my head around all the template shenanigans and functor business. But I think I got it - the transform() function is subtracting the elements of v2 in reverse order from the corresponding elements in v1, and the for_each() loop is printing the results in reverse order. The correct answer is C) 1 0.
upvoted 0 times
Jerry
26 days ago
You nailed it! The transform() is subtracting v2 from v1 in reverse, and for_each() is printing the result in reverse. The output should be 1 0.
upvoted 0 times
...
Trinidad
27 days ago
Great, so the answer is C) 1 0. Good job figuring it out!
upvoted 0 times
...
Jerry
27 days ago
Exactly! The transform() function is doing the subtraction in reverse order, and for_each() is printing the result in reverse. So the correct answer is C) 1 0.
upvoted 0 times
...
Quentin
28 days ago
Exactly, it's all about understanding how the transform() and for_each() functions work with vectors.
upvoted 0 times
...
Vanna
1 months ago
Yeah, that's correct. So the output should be 1 0.
upvoted 0 times
...
Leana
1 months ago
I think you're right, the transform() function is subtracting the elements of v2 from v1 and the for_each() loop is printing the results in reverse order.
upvoted 0 times
...
Jerry
2 months ago
Yep, you got it! The transform() function is subtracting the elements of v2 from v1 in reverse order, and for_each() is printing the results in reverse. So the output is 1 0.
upvoted 0 times
...
...
Rene
2 months ago
The code is doing a bit-by-bit subtraction of the elements of the two input vectors, v1 and v2, and storing the results in v3. Since the elements of v2 are being accessed in reverse order, the output will be the differences between the corresponding elements in the two vectors.
upvoted 0 times
...
Rodrigo
2 months ago
Why do you think it's C)?
upvoted 0 times
...
Katlyn
3 months ago
I disagree, I believe the correct answer is C) 1 0.
upvoted 0 times
...
Rodrigo
3 months ago
I think the answer is B) 0 1.
upvoted 0 times
...
Alva
3 months ago
Hmm, the transform() function is taking the elements of v1 and v2 in reverse order and subtracting them, storing the results in v3. The for_each() loop is then printing the elements of v3 in reverse order. I think the correct answer is C) 1 0.
upvoted 0 times
...
Dianne
3 months ago
This code looks like it's using the transform() and for_each() algorithms to perform some kind of vector manipulation. The output suggests that the transform() is subtracting the elements of the two input vectors, but I'm not sure about the details.
upvoted 0 times
Mitsue
2 months ago
User 4
upvoted 0 times
...
Celestine
2 months ago
User 3
upvoted 0 times
...
Kanisha
2 months ago
User 2
upvoted 0 times
...
Kenny
2 months ago
User 1
upvoted 0 times
...
...

Save Cancel