Which Among The Following Is Correct #1191
Which among the following is correct?
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 is correct?
void test(int x=0, int y, int z=0)
void test(int x=0, int=0)
void test(int x, int y=0)
void test(int x=’c, int y)