Which Among The Following Is A Wrong Call To The Function Void #1193
Which among the following is a wrong call to the function void test(int x, int y=0, int z=0)?
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 a wrong call to the function void test(int x, int y=0, int z=0)?
test(5,6,7);
test(5);
test();
test(5,6);