Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Interview Questions and Answers | ||||
| ||||
Ans. Because the reference is of Object Array and the resolution of what it holds is identified at the runtime. String[] strArray = new String[2]; strArray[0] = 5; would have given the compile time array as the reference is of String array. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  arrays | ||||
Related Questions | ||||
If arrays cannot be resized , Why is this code valid String[] strArray = new String[2]; strArray = new String[5]; | ||||
What are the disadvantages of using arrays ? | ||||
What are the Disadvantages of using Collection Classes over Arrays ? | ||||
Advantage of Collection classes over Arrays ? | ||||
Difference between Arrays and ArrayList ? | ||||
Can we declare an array without assigning the size of an array? | ||||
What is the advantage of using arrays over variables ? | ||||
What is the difference between int[] x; and int x[]; ? | ||||
Write a Program to merge two sorted arrays ? | ||||