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 CPA-21-02 Topic 8 Question 35 Discussion

Actual exam question for C++ Institute's CPA-21-02 exam
Question #: 35
Topic #: 8
[All CPA-21-02 Questions]

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

#include

using namespace std;

class First

{

public:

First() { cout << "Constructor";}

void Print(){ cout<<"from First";}

};

int main()

{

First FirstObject;

FirstObject.Print();

}

Show Suggested Answer Hide Answer
Suggested Answer: C

Contribute your Thoughts:

Carmen
4 hours ago
I'm not sure, but I think it prints: Constructorfrom First
upvoted 0 times
...
Dominque
1 days ago
I believe it prints: Constructor
upvoted 0 times
...
Ashlyn
3 days ago
I think it prints: Constructorfrom First
upvoted 0 times
...
Omer
7 days ago
Hmm, this looks like a tricky one. Let's see, the constructor is called, so it must print 'Constructor'. And then the Print() function is called, so it should print 'from First' as well. I'll go with A, it's gotta be the right answer.
upvoted 0 times
...

Save Cancel