1.

If a class have two data members and two functions to add those two numbers and to subtract them, which among the following is most efficient if the programmer wants to implement multiplication too?

A. Define a public function which multiplies two numbers
B. Define a public function that returns values of two data members
C. Define a private function which multiplies two numbers
D. Define a private function that returns values of two data members
Answer» C. Define a private function which multiplies two numbers


Discussion

No Comment Found