answersLogoWhite

0

Buffet. Another answer is smorgasbord.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is a good sentence for the word array?

His array of weapons was truly awesome. The automobile dealership's array of cars was blindingly shiny.


How can you use the word array in a math sentence?

An array of numbers is used in mathematical problems.


A sentence with the word array?

Array your tools in the order you expect to use them. The sporting goods store has a wide array of exercise shoes.


How many syllables in the word food?

The word food has one syllable.


Explain the Different types of array?

one dementional array and two dementional array


What is single dimentional?

A single dimension array is an array with one dimension. It is a collection in memory of one or more elements of the same type. int array[100]; declares an array of int's of size 100 elements. The elements are referenced as array[0], the first one, through array[99], the last one.


Need a sentence with the word array?

The machine gun nest held an impressive array of weapons. Array your tools and commence construction, students!


What one word sHow is how flukes and tapeworms get their food?

If you want one word that will describe how tapeworms and flukes get their food, that word is parasitism.


What is a word for an assortment of things that starts with an a?

array


What is another word for a magnificent array?

Panoply


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


How does two dimensional array differ from single dimensional array?

A one dimensional array is a scalar value repeated one or more times.A two dimensional array is an array of one dimensional arrays.A three dimensional array is an array of two dimensional arrays, and so forth.The one dimensional array is like a list of things, where the two dimensional array is like an array of things. (Think one row of a spreadsheet versus the whole spreadsheet.)[addendum]Every level of array depth is also a level of pointer depth. For example: A 3 dimensional int array is an int***. So a one dimensional int array is an int*, and a two dimensional int array is an int**. This is only important if you are doing pointer work, but it can become very important.