Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Checkpoint 15.13 (Page 950) #include using namespace std; class First { protected: int a; public: First(int x = 1) { a = x; } void

Checkpoint 15.13 (Page 950)

#include using namespace std; class First

{

protected: int a;

public: First(int x = 1) { a = x; } void twist() { a *= 2; } int getVal() { twist(); return a; }

};

class Second : public First

{

private: int b;

public: Second(int y = 5) { b = y; } void twist() { b *= 10; }

};

1. int main()

2. {

3. First object1;

4. Second object2;

5.

6. cout << object1.getVal() << endl;

7. cout << object2.getVal() << endl;

8. return 0;

9. }

a) What is the output of this program?

b) At line 5, what are the member variable(s) of object1? What are their value(s)?

c) At line 5, what are the member variable(s) of object2? What are their value(s)?

d) At line6, which twist() function is called, First::twist() or Second::twist()?

e) At line6, which twist() function is called, First::twist() or Second::twist()?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 2 Lncs 13427

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124251, 978-3031124259

More Books

Students also viewed these Databases questions

Question

Give tilde approximations for the following quantities:

Answered: 1 week ago

Question

how would you have done things differently?

Answered: 1 week ago

Question

3. What information do participants need?

Answered: 1 week ago