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 1 Question 103 Discussion

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

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

#include

#include

using namespace std;

template

class A {

T_v;

public:

A() {}

A(T v): _v(v){}

T getV() { return _v; }

void add(T & a);

void add(string & a);

};

template

void A::add(T & a) { _v+=a; }

void A::add(string & a) {

_v.insert(0, a);

}

int main()

{

Aa("Hello");

string s(" world!");

a.add(s);

cout << a.getV() <

return 0;

}

Show Suggested Answer Hide Answer
Suggested Answer: B

Contribute your Thoughts:

Vilma
28 days ago
I believe the program will display: Hello world! because the string 'world!' will be inserted at the beginning of 'Hello'.
upvoted 0 times
...
Tijuana
1 months ago
I'm not sure, but I think there might be a compilation error.
upvoted 0 times
...
Merissa
1 months ago
Ha! I bet the output will be 'world!Hello'. The add() function for the string type inserts the input string at the beginning of the existing string. Tricky, but I got it!
upvoted 0 times
Emiko
1 days ago
So the program will display: world!Hello
upvoted 0 times
...
Sharita
6 days ago
Yes, you're right! The string input gets inserted at the beginning.
upvoted 0 times
...
Adell
14 days ago
I think the output will be 'world!Hello'.
upvoted 0 times
...
...
Michal
1 months ago
I agree with Mirta, the code looks correct to me.
upvoted 0 times
...
Mirta
1 months ago
I think the program will display: Hello world!
upvoted 0 times
...
Alva
1 months ago
Hmm, I'm not sure. Maybe it's a compilation error because the template class A doesn't have a default constructor? Let me think about this a bit more.
upvoted 0 times
King
1 months ago
No, it will actually result in a compilation error.
upvoted 0 times
...
Ligia
1 months ago
It will display: Hello world!
upvoted 0 times
...
...
Amos
2 months ago
This is easy, the program will display 'Hello world!' as per option A. The add() function for the string type appends the input string to the existing string.
upvoted 0 times
Jeanice
1 months ago
Great, so the output will be 'Hello world!'
upvoted 0 times
...
Linsey
2 months ago
Yes, you are correct. The add() function for the string type appends the input string to the existing string.
upvoted 0 times
...
Sommer
2 months ago
I think the program will display 'Hello world!' as per option A.
upvoted 0 times
...
...

Save Cancel