subject

ClassB and ClassA have no special relationship; they are two separate classes both used by the same main(). void methodB( ClassA aObj ) is a method ofclassB. It takes a ClassA object as an ordinary parameter. The client, main(), calls methodB(). Here is an outline of the situation:

class ClassA
{
private:
char someMemb;
};

class ClassB
{
public:
void methodB( ClassA aObj );
};

int main()
{
ClassA myObjA;
ClassB myObjB;

myObjB. methodB ( myObjA );
}
Check all the true statements (Check all that apply):

a. If methodB() modifies aObj's someMemb, the client's myObjA's someMemb will also be modified, accordingly, when the method returns.
b. If methodB() modifies aObj's someMemb, the client's myObjA's someMemb will not be modified when the method returns.
c. methodB() can change aObj's someMemb value through direct assignment, as in aObj. someMemb = something.
d. methodB() can read (access) aObj's someMemb value directly without changing it, as in something = aObj. someMemb.
e. methodB() can read from (access) and/or write to (change) aObj's someMemb indirectly through appropriate public ClassA methods, if ClassA offers such methods.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 16:00
Choice of type is influenced primarily by these two factors?
Answers: 3
question
Computers and Technology, 22.06.2019 06:30
This technology is used to produce high-quality documents that look good on the computer screen and in print.
Answers: 1
question
Computers and Technology, 22.06.2019 14:30
Complete the sentence based on your knowledge of the professional difficulties faced by music artists. digital technology allows audiences to see free live telecasts of music or dance performances through
Answers: 1
question
Computers and Technology, 22.06.2019 21:30
This graph compares the total cost of attending educational institutions in texas. the graph demonstrates that the cost at private and public technical schools greatly varies.
Answers: 2
You know the right answer?
ClassB and ClassA have no special relationship; they are two separate classes both used by the same...
Questions
question
Health, 11.01.2020 01:31
question
Mathematics, 11.01.2020 01:31
question
Mathematics, 11.01.2020 01:31
question
Health, 11.01.2020 01:31
Questions on the website: 13722363