0 votes
in JAVA by
Which of the following syntax for defining an array is correct?

1 Answer

0 votes
by
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.
...