Language Fundamentals

Q1: Which one of the following will declare an array and initialize it with five numbers?

A Array a = new Array(5);

B int [] a = {23,22,21,20,19};

C int a [] = new int[5];

D int [5] array;

ANS:B - int [] a = {23,22,21,20,19};

Option B is the legal way to declare and initialize an array with five elements. Option A is wrong because it shows an example of instantiating a class named Array, passing the integer value 5 to the object's constructor. If you don't see the brackets, you can be certain there is no actual array object! In other words, an Array object (instance of class Array) is not the same as an array object. Option C is wrong because it shows a legal array declaration, but with no initialization. Option D is wrong (and will not compile) because it declares an array with a size. Arrays must never be given a size when declared.



img not found
img

For help Students Orientation
Mcqs Questions

One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.