Login
Remember
Register
Ask a Question
Which of the following syntax for defining an array is correct?
0
votes
asked
Oct 24, 2020
in
JAVA
by
sharadyadav1986
Which of the following syntax for defining an array is correct?
#syntax-for-defining
#array-is-correct
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 24, 2020
by
rahuljain1
Which of the following syntax for defining an array is correct?
– Int []=new int[];
– int a[]=new int[];
– int a[] =new int [32];
int a[]=new int[32] is the correct method.
...