answersLogoWhite

0


Best Answer

It is the value of the element.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The contents of a particular element of an array is called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find particular element in array?

by using index position we can find the particular element in array.


How to search the contents of an array by accessing each element only once?

Sequentially, ie one-by-one.


What is an element in the Array?

An array is a container object that holds a fixed number of values of a single type. ... Each item in an array is called an element, and each element is accessed by its numerical index. As shown in the preceding illustration, numbering begins with 0. The 9th element, for example, would therefore be accessed at index 8.


What is sparce array?

sparse array is one which has contents lower than its maximum size, that is the array has free or empty locations....


Will an array element be deleted when you retrieve it from the array?

You cannot delete from an array.


If array is full how you apply linear search?

An array in C is structured so that it has no particular size; you have to know ahead of time what the dimensions are.So, a linear search means that you go from the first element to the last, either finding the element in the table, or going to the very last element and not finding it.Arrays in C can be zero-terminated, in which case you get the element that does not have a value, and that indicates the value you are searching for is not there.If the array is not zero terminated then you can calculate the dimension of the array, or apply the sizeof operator times the size of the first element to determine the length of the search.


Which element of array does this expression refer num5?

which element of the array does this expression reference num[5]


How do you display the contents of the memory addresses stored in an element of pointer array?

Every element of a pointer array is a pointer, therefore to access the memory being pointed at by an element, dereference the element. For example: #include<iostream> int main (void) { int* a[10] = {nullptr}; for (int i=0; i<10; ++i) { a[i] = new int (i+1); } std::cout << "Address of array:\n"; std::cout << "a = 0x" << &a << std::endl; std::cout << "Address of each element in the array:\n"; for (int i=0; i<10; ++i) { std::cout << "a[" << i << "] = 0x" << &a[i] << std::endl; } std::cout << "Value of each element in the array:\n"; for (int i=0; i<10; ++i) { std::cout << "a[" << i << "] = 0x" << a[i] << std::endl; } std::cout << "Dereferenced value of each element in the array:\n"; for (int i=0; i<10; ++i) { std::cout << "a[" << i << "] = " << *a[i] << std::endl; } for (int i=0; i<10; ++i) { delete a[i]; } }


To check if a particular element present in 2 d array?

for(int i = 0; i < [length][] ; i ++){ for(int j = 0; i < [][length]; i++){ if(array[i][j].equals(object)){ return true; } } } return false; Or something..


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).


How do you represent binary tree using array?

The root of the tree is stored in array element [0]; for any node of the tree that is stored in array element [i], its left child is stored in array element [2*i], its right child at [2*i+2]


What search begin the search with the first array element?

The search for the first array element begins at the assembly plant. As they array is being constructed, the element itself is one of the first components to be completed.