AMA University Answers
Login
Register
AMA OED
Courses
ITE
ITE-6104
What is the output of the code...
What is the output of the code snippet below: void main(){test(1.0); test(1);} void test(double x){ System.out.print(x); } void test(int x){ System.out.print(x);}
1.01
Correct
Feedbacks
RainyGamefowl
-
2 years ago
Upvoted this question
BrightGuanaco
-
2 years ago
Upvoted this question
Similar ITE-6104 questions
Which of the following is a valid multidimensional array?
What is the output of the code snippet below: void main(){test();test();} void test(){System.out.pri...
Which of the following does not return numeric value?
Which of the following declares an array of int named intArray?
What will be the output if you execute this code? do{System.out.println("Hello World!");}while(true)...
Which of the following correctly accesses the sixth element stored in an array of 10 elements?