InterviewSolution
Saved Bookmarks
| 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 membersI have been asked this question in a national level competition.The question is from Class Use in section Classes of Object Oriented Programming |
|
Answer» The correct option is (b) Define a public function that RETURNS values of two data MEMBERS |
|