Question: Which of the function declarations in this code are probably not const correct? class Movie { public: Movie(const string& Title, const string& Director); Movie (const

Which of the function declarations in this code are probably not const correct?

class Movie { public: Movie(const string& Title, const string& Director); Movie (const Movie&); string getTitle(); void getDirector () const; void setTitle(string aTitle); void setDirector (const string& aDirector) const; private: string theTitle; string theDirector; }; ostream& operator<< (ostream&, const Movie&); 
a

first constructor

b

copy constructor

c

getTitle

d

getDirector

e

setTitle

f

setDirector

g

theTitle

h

operator<<

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!