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: int[] intArray = new int[10];for(int x = 0; x<intArray.length; x++){System.out.print(intArray[x]);}
0000000000
Correct
012356789
The given code is not valid
1235678910
none of the choices
Similar ITE-6104 questions
Which of the following is a correct declaration of an array?
Which of the following array declarations is correct?
What is the output of the code snippet below: int[] intArray = { 1, 2, 3, 5, 6, 7 }; ...
Which of the following is a valid method name:
What is the name of this method: int test(){return 1;} ?
Which of the following shows a valid Overloading method?