You are not logged in.
Pages:: 1
#1 2015-06-17 05:59:27
Initialize Array:
Java Quizzes Java Language Array
Question:
Which will legally declare, construct, and initialize an array?
Option A):
int myList [] [] = {4,9,7,0};
Option B):
int myList [] = {4, 3, 7};
Option C):
int [] myList = {
Option D):
int [] myList = (5, 8, 2);
Correct Answer is Option A):
int myList [] [] = {4,9,7,0};
You cannot discover the new oceans unless you have the courage to lose the sight of the shore.
Offline
2015-06-17 05:59:27
- Advertisement
- Ads By Google
Re: Initialize Array:
\n
Pages:: 1