Q:

Which is the correct interpretation of the member function call from an object, object.function(parameter);

0

Which is the correct interpretation of the member function call from an object, object.function(parameter);


  1. object.function(&this, parameter)
  2. object(&function,parameter)
  3. function(&object,¶meter)
  4. function(&object,parameter)

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (d).function(&object,parameter)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

OBJECT ORIENTED PROGRAMMING - OBJECTS AND POINTERS MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
The address of the object _________________... >>
<< Whenever non-static member functions are called __...