1. | Which of the following is the correct way to define and initialise an array of 4 integers? 1 int[] a = {25, 30, 40, 5}; 2 int[] a; 3 int[] a; 4 int[] a; 5 int[] a; |
|||||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|