subject

The following code generates an error. Why? class School {
public:
void PrintNames();
protected:
void SetNames();
string names;
private:
string address;
};
class NewSchool : School {
public:
string GetNames();
};
int main() {
NewSchool myObject;
String str;
myObject. SetNames();
str = myObject. GetNames();
return 0;
}

a. In class NewSchool : School, the specifier is not mentioned.
b. The function myObject. SetNames() is not accessible by main().
c. The variable address is accessible by the class NewSchool.
d. The variable name is accessible by main().

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 13:30
To remove a header or footer from a document you can open the header and footer and manually delete the content true or false
Answers: 1
question
Computers and Technology, 23.06.2019 21:30
To move a file or folder in microsoft windows, you can click and hold down the left mouse button while moving your mouse pointer to the location you want the file or folder to be, which is also known as.
Answers: 3
question
Computers and Technology, 23.06.2019 21:40
Draw the resistor’s voltage and current phasors at t=15ms. draw the vectors with their tails at the origin. the orientation of your vectors will be graded. the exact length of your vectors will not be graded.
Answers: 2
question
Computers and Technology, 24.06.2019 17:40
The value of sin(x) (in radians) can be approximated by the alternating infinite series create a function (prob3_2) that takes inputs of a scalar angle measure (in radians) and the number of approximation terms, n, and estimates sin(x). do not use the sin function in your solution. you may use the factorial function. though this can be done without a loop (more efficiently), your program must use (at least) one. you may find the mod() function useful in solving the problem.
Answers: 1
You know the right answer?
The following code generates an error. Why? class School {
public:
void PrintNames();...
Questions
question
Social Studies, 22.07.2019 16:00
question
Mathematics, 22.07.2019 16:00
question
Mathematics, 22.07.2019 16:00
question
Mathematics, 22.07.2019 16:00
Questions on the website: 13722362