answersLogoWhite

0


Best Answer

composite

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do you call a number that can be arranged in more than two arrays?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is a multidimentional array?

Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.


What is multidimentional array?

Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.


What do you call numbers with more than 2 different factors?

It is a composite number and a number with only two factors is a prime number


What do you call 51 acomposite or a prime number?

51 is a composite number because it has more than two factors.


Meaing of Associative Array in PHP?

There are two types of arrays, associative arrays, and indexed arrays. Indexed arrays are where you access the items in order, for example $myArray[0] would be the first item in the array, $myArray[1] would be the second item, and so on. You can create an indexed array like this: $myArray = array("item1","item2","item3"); echo $myArray[0]; //item1 echo $myArray[2]; //item3 You can also set your own indexes: $myArray = array(0=>"item1", 1=>"item2", 5=>"number 5"); echo $myArray[0]; //item1 echo $myArray[2]; //null or doesnt exist, i cant remember You can also add items after using the square-brackets. If you include a number, that index is set, otherwise it just adds it to the end of the array. $myArray[9] = "set index 9"; $myArray[] = "add to the end of the array"; Associative arrays use strings instead of numbers. $colors = array("cat"=>"brown", "dog"=>"yellow", "fish"=>"purple"); echo $colors["cat"]; //brown echo $colors["fish"]; //purple And you can add more with the square-brackets again. $colors["camel"] = "green"; To loop through both types of arrays you can use a foreach loop, or to loop through indexed arrays you can get the length into a variable and a do normal for loop.

Related questions

What is multidimentional array?

Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.


What is a multidimentional array?

Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.


How do you get difference between two or more arrays in PHP?

The inherit function `array_dif($arrayOne, $arrayTwo, $arrayThree, ...)` is likely what you're looking for. It compares two or more arrays, and returns an array of values that are unique among the arrays.


What is the required syntax for creating C arrays?

The required syntax for creating C arrays include the brackets, array size, variety length arrays, codes like std:vector, classPTR, and many more to create C arrays.


Are the number in the periodic table are arranged by atomic mass?

No all he elements on the Periodic Table are arranged by the atomic number because some element are lighter than other and have more or less protons in the nucleus of the atom( The number of protons in an atom is the atomic number).


How many arrays can you make with the number 42?

4 (or eight if you count transposed arrays as being different).


How do perioidic table list elements?

The periodic table is arranged into Groups (i.e. columns) and Periods (rows). Now, each element is assigned an atomic number which is equal to the number of protons within its nucleus. Each element is then arranged in order of increasing atomic number from left to right. There is a more indepth answer relating to how the periodic table is arranged, however this is how they are "listed".


How are period arranged on the periodic table?

The elements are arranged in order of increasing atomic number in the Periodic Table. The rows are called periods and the columns are called groups.


What do you call a number that has more than factors?

A number with more than two factors is composite


What do you call a number with more than two factors?

A composite number


When two or more number multiplied each number is call?

a factor


Does Java support multidimensional arrays?

Yes, Java supports multidimensional Arrays.Syntax isint[ ][ ] aryNumbers = new int[x][y];x represents number of rowsy represents number of columns