Font size:
Print
Question:  Which one of the following will declared an array and initialize it with five numbers?
1. Array a = new Array (5):
2. int []a = {23, 22, 21, 20, 19];
3. int a [] = new int [5];
4. int (5) array;
Prev Question Which of the following are legal array declarat...
Next Question Which of the given statement is not true about ...