Which Among The Following Function Can Be Called Without #1189
Which among the following function can be called without arguments?
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 Default Arguments vs Overloading, Upcasting and Downcasting - OOPs MCQ: Default Arguments - Quiz No.1.
Which among the following function can be called without arguments?
void add(int x, int y=0)
void add(int=0)
void add(int x=0, int y=0)
void add(char c)