answersLogoWhite

0


Best Answer

i don;t know, can u help

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
User Avatar

Jackson Garza

Lvl 1
3y ago
I was looking for an answer you idiot.
More answers
User Avatar

Wiki User

11y ago

I ddont know

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a number model for an array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is squre array?

A square array is an array in which the number of rows is the same as the number of columns.


What is The number of elements in an array is called?

the length of the array


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

length


What is square array?

It is an array with the same number of rows and columns.


Can a prime number be made into an array?

Yes, a unit array.


What is an associative array?

An associative array is one of a number of array-like data structures where the indices are not limited to integers.


How do you do the area array model?

dhfjopdpyp;pg[;ep;ep;


What is flat model database?

in which is a two dimensional array of data


How can you get position of number from given some number by using array in c language?

Traverse the array from index 0 until you find the number. Return the index of that number.


Why the index of an array be a positive number?

Since an array cannot contain a negative number of items, the size of an array must be at least 0. So if you ever tried to retrieve the element at a negative index in an array, it would automatically be understood to be out-of-bounds.


How do you print element in array using javascript?

You would insert this command right after your array values have been specified.document.write(name of array[Number on array this item is, starts at 0])


Can ragged arrays created by using java?

I assume you mean that you have a number of rows, and that not all rows have the same number of "cells". Yes, in Java a two-dimensional array is implemented as an array of arrays (each item in the top-level array is, in itself, an array); a 3-dimensional array is an array of arrays of arrays, etc.; and there is no rule stating that all secondary (etc.) arrays must have the same number of elements.