Answer:
Option B is the correct answer for the above question.
Step-by-step explanation:
The array is a user-defined data type that is used to define the multiple variables of the same type which can store in the contiguous memory location. If a user wants to define the array then he can do this by the following syntax in c-programming language-- "int a[7];", where a is an array of 7 variables of the integer type which holds the integer data. The 7 is also called the size of the array 'a'. It states that the array named a can hold the 7 integer value. The above -question also asked about the term which defines how much variables an array can hold. The answer is the size of the array which is stated from the option B. Hence B is the correct answer while the other is not because--
- Option A states about the new operator which is not the correct option.
- Option C states about the data type of the array which is not the correct option.
- Option D states about the version of java which is not the correct option.