Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Find the error(s) in each of the following and explain how to correct it. 1.Assume the following prototype is declared in class Date : void

  1. Find the error(s) in each of the following and explain how to correct it.

1.Assume the following prototype is declared in class Date:

void ~Date( char );

2.

  1. The following is a partial definition of class Washer:

class Washer

{

public:

Washer(double w, double c) {w=weight, c=capacity; }

void getWeight() const { return weight; }

private:

double weight, capacity;

};

int main()

{

Washer wash;

wash.weight = 100;

cout << The weight is: << getWeight() << endl;

return 0;

}

3.Assume the following prototype is declared in class Employee:

int Employee( const char *, const char *); // constructor

C++

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

Students also viewed these Databases questions