answersLogoWhite

0


Best Answer

Some synonyms for the word array include display, arrangement, line up, collection.

Array may also be synonymous with:

  • formation
  • variety
  • a lot
  • show
  • supply
  • exhibition
  • mixture
  • parade
User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

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

What is a synonym and antonym of array?

Synonyms for array are display, arrangement, line up, or collection. Antonym is the opposite: disarray, random.


Synonym for array?

Batch, bunch, bundle, cluster, design, display, lineup, pattern, or supply. Those words mean array.


What is the synonym of bundle?

package, collection, bag, array, pack, quantity, stack


What is a synonym for deck?

decorate, dress, clothe, array, adorn, embellish, festoon, beautify


What is a synonym for equipment?

supply, provide for, stock, stuff, provision, arm, furnish, array, fit out, prepare


What is a synonym for 'variety'?

collection, diversity, assortment, selection, multiplicity, array, range, mixture, change, variability, variation


What is the synonym of sequence?

arrangement, array, distribution, flow, grouping, ordering, placement, procession, progression, row, streak, string, succession, train


What is a synonym for countless?

* innumerable * many * infinite * multitudinous * untold * a plethora of * a slew * umpteen * oodles * limitless * legion of * incalculable * a vast array


What is the synonym for fanfare?

It depends exactly what meaning you want, but... Synonyms: alarum, array, ballyhoo, demonstration, display,flourish, hullabaloo*, panoply, parade, pomp,shine, show, trump, trumpet call


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];