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.

Related questions

0 votes
asked Jan 23, 2020 in JAVA by rahuljain1
0 votes
asked Apr 15, 2021 in JAVA by SakshiSharma
...