Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Assume this class: class Space { private: int priv; public: int pub; }; //And assume this code in main() Space *sp = new Space,

C++

Assume this class:

class Space

{

private:

int priv;

public:

int pub;

};

//And assume this code in main()

Space *sp = new Space, *bar=NULL;

sp = new Space;

bar = sp;

(*bar).pub=92;

sp->pub=-82;

Which of the following best describes the code?

A.

This code will result in a memory leak.

B.

The class is invalid since there are no public class methods.

C.

The line

bar = sp;

is not allowed and will be a syntax error.

D.

The code

(*bar).pub=92;

is a runtime error since bar is NULL;

E.

The code will result in a runtime error since the pointer is never deleted.

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

Online Market Research Cost Effective Searching Of The Internet And Online Databases

Authors: John F. Lescher

1st Edition

0201489295, 978-0201489293

More Books

Students also viewed these Databases questions

Question

Explain the factors affecting dividend policy in detail.

Answered: 1 week ago

Question

Explain walter's model of dividend policy.

Answered: 1 week ago