What is wrong with this code?

```
class Person
{
private:
string name;
string address;
public:
People();
void SetName(string n);
void SetAddress(string a);
};

```

A. The constructor has not initialized its variables.
B. There is no constructor.
C. Variables are passed into the set functions but nothing is returned.
D. None of the above.

B. There is no constructor.

Computer Science & Information Technology

You might also like to view...

Excel has variety of templates that you can access on-line

Indicate whether the statement is true or false

Computer Science & Information Technology

Located just below the top menu in SharePoint, the Quick Launch is the tabbed interface

Indicate whether the statement is true or false

Computer Science & Information Technology