C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 10 Topic 2 Discussion

C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 10 Topic 2 Discussion

CPA-21-02 Exam Topic 2 Question 10 Discussion:
Question #: 10
Topic #: 2

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

#include

#include

using namespace std;

string fun(string, string);

int main()

{

string s="Hello";

cout << fun(s, " World");

return 0;

}

string fun(string s1, string s2)

{

return s1+s2;

}


A.

It will print: Hello World


B.

It will print: Hello


C.

It will print: World


D.

It will print: HW


Get Premium CPA-21-02 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.