Which Public Function Call Among The Following Is Correct #1044
Which public function call among the following is correct outside the class, if return type is void (C++)?
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Member Functions & its Types - Object Oriented Programming MCQ: Public Member Functions - Quiz No.1.
Which public function call among the following is correct outside the class, if return type is void (C++)?
object.void functionName(parameters);
object.functionName(parameters);
object.functionName void (parameters)
object.void functionName();