answersLogoWhite

0


Best Answer

the length of the array

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is The number of elements in an array is called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

If structure is arraythen an individual array element can be accessed by writing a variable?

A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.


What are Array variables also called as?

Elements of the array.


This array field holds the number of elements that the array has?

length


What is a FIFO array?

It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.


What is the index number of the last element of an array with 9 elements?

(array.length - 1) will find the index of the last element in an array (or -1 if the array is empty).

Related questions

If structure is arraythen an individual array element can be accessed by writing a variable?

A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.


What are Array variables also called as?

Elements of the array.


This array field holds the number of elements that the array has?

length


How you can find out the number of elements and free elements in a pointer array?

You can find the number of elements and free elements in a pointer array by iterating through the array and counting the number of elements that are null versus the number that are non-null. Of course, this technique's success depends on proper initialization of each element, i.e. when first created or when deleted, it must be set to null.


What is a FIFO array?

It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.


How can you find the length of a single dimensional array in BlueJ?

array.length will return the number of elements in array.


What happens if a subscript value is negative or higher than the number of elements in an array?

It cannot be part of the array.


What is the index number of the last element of an array with 9 elements?

(array.length - 1) will find the index of the last element in an array (or -1 if the array is empty).


What are the parts of an array?

Its type, name and number of elements. char example[12]; // a char array, named 'example' with 12 elements. The name is also a reference to the array itself, referring to the first element in the array (e.g., example == &example[0]).


What is array literal in as2?

An array literal is a comma-separated list of the elements of an array. An array literal can be used for initializing the elements of an array.


What is the condition of second largest number?

There is no such condition. The algorithm to locate the second largest number in an array of numbers is: Sort the array in descending order. Remove the duplicate values from the array. If there are two or more elements remaining, return the second number. If there is less than two elements remaining, return the NaN value (not a number).


How do you declare a string array and add elements to it in C plus plus?

You cannot add elements to a fixed array in C or C++. If, however, the array is declared as a pointer to an array, you can add elements by allocating a new array, copying/adding elements as needed, reassigning the new array to the pointer, and deallocating the original array.