Advertisements
Advertisements
प्रश्न
Identify the correct array declaration statement.
विकल्प
int a[10];
int a[]=new int[10];
int arr[i]=10;
int a[10]=new int[];
उत्तर
int a[]=new int[10];
Explanation:
The array name, as well as the new operator and the array size, must be given when declaring an array.
APPEARS IN
संबंधित प्रश्न
What is the value stored in variable res given below?
double res = Math.pow (“345”.indexOf(‘5’), 3);
Define a class to declare an integer array of size n and accept the elements into the array. Search for an element input by the user using the linear search technique, display the element if it is found, otherwise display the message “NO SUCH ELEMENT".
Define a class to declare a character array of size ten, accept the character into the array and perform the following:
- Count the number of uppercase letters in the array and print.
- Count the number of vowels in the array and print.
Define a class to declare an array of size 20 of the double datatype, accept the elements into the array and perform the following:
- Calculate and print the sum of all the elements.
- Calculate and print the highest value of the array.