answersLogoWhite

0

In mathematics what is an array?

Updated: 4/28/2022
User Avatar

Wiki User

14y ago

Best Answer

An array is a 2-dimensional rectangle with length and width. An array also has area and perimeter.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In mathematics what is an array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does array in mat?

In Mathematics, an array is an arrangement of quantities or symbols in rows and columns; a matrix. In Computing, an array is an indexed set of related elements.


What is a array in math?

An array is a computer science equivalent of a vector in mathematics. Both contain a list of data.


What does that mean matrix?

A matrix in mathematics is a rectangular array of quantities or expressions set out by rows and columns.


What is mean by matrix?

In mathematics, a matrix refers to a rectangular array of numbers, symbols, or expressions. The parts of the matrix are called elements, and are organized into rows and columns.


What has the author James Edward Simpson written?

James Edward Simpson has written: 'An array multiplier for twos-complement binary numbers' -- subject(s): Binary system (Mathematics)


What is the grid method in mathematics?

The grid method is a way of teaching multiplication that is used in primary schools. Pupils move on from an array to the grid method. It is also used for teaching times tables.


Differentiate single dimensional array to double dimensional array?

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.


What is meant by irregular dimensional array?

An irregular dimensional array is a special type of multi-dimensional array.First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.Regular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4, 5}array[2] = new array{6, 7, 8}array[3] = new array{9, 10, 11}This regular array is an array of size 4 in which each sub-array is of size 3.Irregular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4}array[2] = new array{5, 6, 7}array[3] = new array{8, 9, 10, 11}This irregular array is an array of size 4 in which the size of each sub-array is not the same.


How do you swap two adjecent no in array in c?

Option 1) Use a temporary variable: int x = array[i]; array[i] = array[i+1]; array[i+1] = x; Option 2) Use bit operators: array[i] ^= array[i+1] ^= array[i];


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.


How do you swap rows in 2 dimensional array in Java?

[]temp = array[1] array[2]=array[1] array[1]=[]temp


Why the array is starting from zero?

By design; it makes the compiler's work easier. 1-based array's addressing-function: Address (array, index) = Address (array) + (index-1)*Elemsize(array) 0-based array's addressing-function: Address (array, index) = Address (array) + index*Elemsize (array)