0
what is String name[]=new String[275]
2 Answers
+ 3
That's a String array declared and instantiated with using the new keyword and the size of the array is 275.
For more info đ
https://docs.oracle.com/javase/specs/jls/se7/html/jls-10.html
+ 1
Thanks