AMA University Answers
Login
Register
AMA OED
Courses
ITE
ITE-6104
What is the name of this metho...
What is the name of this method: int test(){return 1;} ?
7
None of the choices
int
6
test
Correct
Feedbacks
ParentalJaguar
-
2 years ago
Upvoted this question
Similar ITE-6104 questions
Which of the following shows a valid Overloading method?
What is the return type of this method: int test(){return 1;} ?
What is the output of the code snippet below: void main(){test();test();} void test(){System.out.pri...
What is the return value of this method: public void sum(){int x=1;} ?
What is the output of the code snippet below:void main(){test(1.0);test(1);}void test(double x){Syst...
What is the output of the code snippet below: void main(){test("11");test("1");} ...