Programming Languages Java Objective
Mar 01, 2013

Which one creates an instance of an array?

Choose the correct answer:
A) int[ ] ia = new int[15];
B) float fa = new float[20];
C) char[ ] ca = "Some String";
D) int ia[ ] [ ] = { 4, 5, 6 }, { 1,2,3 };
Detailed Explanation

Option A is the right answer.

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback