What does stack mean?
Definitions for stack
stækstack
This dictionary definitions page includes all the possible meanings, example usage and translations of the word stack.
Princeton's WordNet
stacknoun
an orderly pile
batch, deal, flock, good deal, great deal, hatful, heap, lot, mass, mess, mickle, mint, mountain, muckle, passel, peck, pile, plenty, pot, quite a little, raft, sight, slew, spate, stack, tidy sum, wadnoun
(often followed by `of') a large number or amount or extent
"a batch of letters"; "a deal of trouble"; "a lot of money"; "he made a mint on the stock market"; "see the rest of the winners in our huge passel of photos"; "it must have cost plenty"; "a slew of journalists"; "a wad of money"
push-down list, push-down stack, stacknoun
a list in which the next item to be removed is the item most recently stored (LIFO)
smokestack, stacknoun
a large tall chimney through which combustion gases and smoke can be evacuated
push-down storage, push-down store, stackverb
a storage device that handles data so that the next item to be retrieved is the item most recently stored (LIFO)
stackverb
load or cover with stacks
"stack a truck with boxes"
stack, pile, heapverb
arrange in stacks
"heap firewood around the fireplace"; "stack your books up on the shelves"
stackverb
arrange the order of so as to increase one's winning chances
"stack the deck of cards"
GCIDE
Stacknoun
(Computer programming) (a) A section of memory in a computer used for temporary storage of data, in which the last datum stored is the first retrieved. (b) A data structure within random-access memory used to simulate a hardware stack; as, a push-down stack.
Stacknoun
pl. The section of a library containing shelves which hold books less frequently requested.
Stacknoun
Hence: An orderly pile of any type of object, indefinite in quantity; -- used especially of piles of wood. A stack is usually more orderly than a pile
Stackverb
Specifically: To place in a vertical arrangement so that each item in a pile is resting on top of another item in the pile, except for the bottom item; as, to stack the papers neatly on the desk; to stack the bricks.
Stackverb
To select or arrange dishonestly so as to achieve an unfair advantage; as, to stack a deck of cards; to stack a jury with persons prejudiced against the defendant.
Wiktionary
stacknoun
A large pile of hay, grain, straw, or the like, larger at the bottom than the top, sometimes covered with thatch.
stacknoun
A pile of similar objects, each directly on top of the last.
Please bring me a chair from that stack in the corner.
stacknoun
A pile of poles or wood, indefinite in quantity.
stacknoun
A pile of wood containing 108 cubic feet. (~3 m)
stacknoun
A smokestack.
stacknoun
A linear data structure in which the last datum stored is the first retrieved; a LIFO queue.
stacknoun
A portion of computer memory occupied by a stack data structure, particularly (the stack) that portion of main memory manipulated during machine language procedure call related instructions.
stacknoun
A coastal landform, consisting of a large vertical column of rock in the sea.
stacknoun
Compactly spaced bookshelves used to house large collections of books.
stackverb
To arrange in a stack, or to add to an existing stack.
Please stack those chairs in the corner.
stackverb
To arrange the cards in a deck in a particular manner.
This is the third hand in a row you've drawn a four-of-a-kind. Someone is stacking the deck!
stackverb
To deliberately distort the composition of (an assembly, committee, etc.).
The Government was accused of stacking the parliamentary committee.
stackverb
To fall or crash.
Jim couldn't make it today as he stacked his car on the weekend.
stacknoun
A large amount of an object.
They paid him a stack of money to keep quiet.
stacknoun
A pile of rifles or muskets in a cone shape.
stacknoun
The amount of money a player has on the table.
stacknoun
A vertical drain pipe.
stacknoun
A fall or crash, a prang.
Etymology: Compare Swedish stacka, Danish stakke.
Samuel Johnson's Dictionary
Stacknoun
Etymology: stacca, Italian.
Against every pillar was a stack of billets above a man’s height, which the watermen that bring wood down the Seine laid there. Francis Bacon, Natural History.
While the marquis and his servant on foot were chasing the kid about the stack, the prince from horseback killed him with a pistol. Henry Wotton, Buckingham.
While the cock
To the stack or the barn-door
Stoutly struts his dame before. John Milton.Stacks of moist corn grow hot by fermentation. Newton.
An inundation, says the fable,
O’erflow’d a farmer’s barn and stable;
Whole ricks of hay and stacks of corn
Were down the sudden current born. Jonathan Swift.A mason making a stack of chimneys, the foundation of the house sunk. Richard Wiseman, Surgery.
To Stackverb
To pile up regularly in ricks.
Etymology: from the noun.
So likewise a hovel will serve for a room,
To stack on the pease. Thomas Tusser.The prices of stacking up of wood I shall give you. John Mortimer.
Wikipedia
stack
CONFIG.SYS is the primary configuration file for the DOS and OS/2 operating systems. It is a special ASCII text file that contains user-accessible setup or configuration directives evaluated by the operating system's DOS BIOS (typically residing in IBMBIO.COM or IO.SYS) during boot. CONFIG.SYS was introduced with DOS 2.0.
ChatGPT
stack
A stack is a data structure in computing that stores and organizes items in a linear format. Items are added and removed from one end known as the 'top' of the stack. Its operations follow the LIFO (Last In First Out) principle, meaning the items added last are the ones removed first. This fundamental structure is often used in various types of computer programming. Its two main operations are push (to add an item) and pop (to remove an item).
Webster Dictionary
Stackadjective
a large pile of hay, grain, straw, or the like, usually of a nearly conical form, but sometimes rectangular or oblong, contracted at the top to a point or ridge, and sometimes covered with thatch
Stackadjective
a pile of poles or wood, indefinite in quantity
Stackadjective
a pile of wood containing 108 cubic feet
Stackadjective
a number of flues embodied in one structure, rising above the roof. Hence:
Stackadjective
any single insulated and prominent structure, or upright pipe, which affords a conduit for smoke; as, the brick smokestack of a factory; the smokestack of a steam vessel
Stackadjective
a section of memory in a computer used for temporary storage of data, in which the last datum stored is the first retrieved
Stackadjective
a data structure within random-access memory used to simulate a hardware stack; as, a push-down stack
Stacknoun
to lay in a conical or other pile; to make into a large pile; as, to stack hay, cornstalks, or grain; to stack or place wood
Etymology: [Icel. stakkr; akin to Sw. stack, Dan. stak. Cf. Stake.]
Wikidata
Stack
In computer science, a stack is a particular kind of abstract data type or collection in which the principal operations on the collection are the addition of an entity to the collection, known as push and removal of an entity, known as pop. The relation between the push and pop operations is such that the stack is a Last-In-First-Out data structure. In a LIFO data structure, the last element added to the structure must be the first one to be removed. This is equivalent to the requirement that, considered as a linear data structure, or more abstractly a sequential collection, the push and pop operations occur only at one end of the structure, referred to as the top of the stack. Often a peek or top operation is also implemented, returning the value of the top element without removing it. A stack may be implemented to have a bounded capacity. If the stack is full and does not contain enough space to accept an entity to be pushed, the stack is then considered to be in an overflow state. The pop operation removes an item from the top of the stack. A pop either reveals previously concealed items or results in an empty stack, but, if the stack is empty, it goes into underflow state, which means no items are present in stack to be removed.
Chambers 20th Century Dictionary
Stack
stak, n. a large pile of bay, corn, wood, &c.: a number of chimneys standing together: a pyramid formed by a number of muskets with fixed bayonets interlocked and the stocks spread widely apart.—v.t. to pile into a stack: to make up cards for cheating.—ns. Stack′-stand, a frame of wood, iron, or stone, supported on short props, for building a stack upon; Stack′yard, a yard for stacks. [Scand.; Ice. stakkr, a stack of hay.]
The New Hacker's Dictionary
stack
The set of things a person has to do in the future. One speaks of the next project to be attacked as having risen to the top of the stack. “I'm afraid I've got real work to do, so this'll have to be pushed way down on my stack.” “I haven't done it yet because every time I pop my stack something new gets pushed.” If you are interrupted several times in the middle of a conversation, “My stack overflowed” means “I forget what we were talking about.” The implication is that more items were pushed onto the stack than could be remembered, so the least recent items were lost. The usual physical example of a stack is to be found in a cafeteria: a pile of plates or trays sitting on a spring in a well, so that when you put one on the top they all sink down, and when you take one off the top the rest spring up a bit. See also push and pop.(The Art of Computer Programming, second edition, vol. 1, p. 236) says:Many people who realized the importance of stacks and queues independently have given other names to these structures: stacks have been called push-down lists, reversion storages, cellars, nesting stores, piles, last-in-first-out (“LIFO”) lists, and even yo-yo lists! The term “stack” was originally coined by Edsger Dijkstra, who was quite proud of it.
Dictionary of Nautical Terms
stack
A precipitous rock rising out of the sea, in northern hydrography.
Suggested Resources
stack
Song lyrics by stack -- Explore a large variety of song lyrics performed by stack on the Lyrics.com website.
Surnames Frequency by Census Records
STACK
According to the U.S. Census Bureau, Stack is ranked #2996 in terms of the most common surnames in America.
The Stack surname appeared 11,967 times in the 2010 census and if you were to sample 100,000 people in the United States, approximately 4 would have the surname Stack.
92.7% or 11,093 total occurrences were White.
2.7% or 330 total occurrences were of Hispanic origin.
1.7% or 214 total occurrences were Black.
1.5% or 188 total occurrences were of two or more races.
0.8% or 98 total occurrences were Asian.
0.3% or 43 total occurrences were American Indian or Alaskan Native.
Usage in printed sourcesFrom:
- [["1579","1"],["1637","2"],["1644","2"],["1645","2"],["1653","3"],["1656","1"],["1664","1"],["1668","1"],["1669","2"],["1676","1"],["1678","3"],["1680","1"],["1681","1"],["1682","1"],["1683","1"],["1684","1"],["1685","1"],["1686","2"],["1697","1"],["1698","1"],["1699","2"],["1700","3"],["1701","5"],["1702","1"],["1703","1"],["1706","3"],["1707","1"],["1708","5"],["1710","1"],["1711","3"],["1712","1"],["1716","5"],["1717","13"],["1718","3"],["1719","1"],["1720","4"],["1721","1"],["1722","6"],["1723","5"],["1724","5"],["1725","1"],["1726","2"],["1727","7"],["1728","2"],["1729","5"],["1730","2"],["1731","2"],["1732","1"],["1733","2"],["1734","3"],["1735","2"],["1737","4"],["1738","3"],["1739","1"],["1740","4"],["1741","4"],["1742","1"],["1743","3"],["1744","9"],["1745","6"],["1747","3"],["1748","5"],["1749","1"],["1750","14"],["1751","6"],["1752","4"],["1753","6"],["1754","9"],["1755","7"],["1756","1"],["1757","3"],["1758","22"],["1759","26"],["1760","7"],["1761","27"],["1762","4"],["1763","2"],["1764","20"],["1765","11"],["1766","30"],["1767","16"],["1768","10"],["1769","10"],["1770","74"],["1771","117"],["1772","67"],["1773","18"],["1774","26"],["1775","36"],["1776","62"],["1777","6"],["1778","131"],["1779","8"],["1780","15"],["1781","5"],["1782","5"],["1783","106"],["1784","11"],["1785","49"],["1786","25"],["1787","25"],["1788","94"],["1789","55"],["1790","14"],["1791","31"],["1792","36"],["1793","40"],["1794","61"],["1795","51"],["1796","138"],["1797","77"],["1798","134"],["1799","137"],["1800","125"],["1801","105"],["1802","115"],["1803","91"],["1804","251"],["1805","303"],["1806","154"],["1807","222"],["1808","264"],["1809","237"],["1810","202"],["1811","240"],["1812","108"],["1813","297"],["1814","141"],["1815","217"],["1816","152"],["1817","254"],["1818","188"],["1819","179"],["1820","177"],["1821","145"],["1822","183"],["1823","173"],["1824","363"],["1825","277"],["1826","224"],["1827","235"],["1828","205"],["1829","172"],["1830","321"],["1831","337"],["1832","334"],["1833","352"],["1834","604"],["1835","280"],["1836","362"],["1837","211"],["1838","413"],["1839","312"],["1840","590"],["1841","261"],["1842","364"],["1843","466"],["1844","805"],["1845","373"],["1846","595"],["1847","391"],["1848","466"],["1849","467"],["1850","888"],["1851","813"],["1852","1154"],["1853","594"],["1854","1044"],["1855","796"],["1856","722"],["1857","963"],["1858","601"],["1859","743"],["1860","982"],["1861","855"],["1862","469"],["1863","578"],["1864","713"],["1865","878"],["1866","954"],["1867","922"],["1868","1132"],["1869","958"],["1870","856"],["1871","676"],["1872","746"],["1873","615"],["1874","1062"],["1875","993"],["1876","853"],["1877","906"],["1878","975"],["1879","879"],["1880","1132"],["1881","1194"],["1882","1220"],["1883","1246"],["1884","1850"],["1885","1260"],["1886","912"],["1887","2134"],["1888","1582"],["1889","1380"],["1890","1831"],["1891","2430"],["1892","1896"],["1893","1618"],["1894","1635"],["1895","2215"],["1896","2078"],["1897","2119"],["1898","2543"],["1899","3128"],["1900","2308"],["1901","2504"],["1902","2975"],["1903","2815"],["1904","3241"],["1905","3439"],["1906","4108"],["1907","5346"],["1908","4671"],["1909","3812"],["1910","3891"],["1911","4549"],["1912","4675"],["1913","4060"],["1914","3739"],["1915","4396"],["1916","4536"],["1917","4322"],["1918","3376"],["1919","3503"],["1920","4573"],["1921","3853"],["1922","4867"],["1923","4247"],["1924","4602"],["1925","3991"],["1926","3568"],["1927","3174"],["1928","5021"],["1929","3913"],["1930","3962"],["1931","3842"],["1932","3365"],["1933","3227"],["1934","2805"],["1935","3222"],["1936","3702"],["1937","4466"],["1938","3721"],["1939","4676"],["1940","4183"],["1941","5458"],["1942","4519"],["1943","3555"],["1944","3670"],["1945","3677"],["1946","4595"],["1947","5973"],["1948","5223"],["1949","5750"],["1950","7063"],["1951","5948"],["1952","7161"],["1953","5457"],["1954","7459"],["1955","5990"],["1956","7345"],["1957","7576"],["1958","7377"],["1959","7131"],["1960","8335"],["1961","9100"],["1962","9195"],["1963","10669"],["1964","8765"],["1965","9118"],["1966","10357"],["1967","11796"],["1968","15204"],["1969","14479"],["1970","15260"],["1971","17407"],["1972","21460"],["1973","19132"],["1974","17491"],["1975","27797"],["1976","27052"],["1977","28626"],["1978","30988"],["1979","33649"],["1980","36800"],["1981","41192"],["1982","43939"],["1983","43109"],["1984","53913"],["1985","57554"],["1986","69600"],["1987","65086"],["1988","83747"],["1989","82629"],["1990","90279"],["1991","74973"],["1992","89537"],["1993","74712"],["1994","80274"],["1995","75551"],["1996","79054"],["1997","81874"],["1998","84044"],["1999","86939"],["2000","102851"],["2001","106356"],["2002","130119"],["2003","150637"],["2004","135994"],["2005","147575"],["2006","137082"],["2007","156774"],["2008","150907"]]
Anagrams for stack »
tacks
Numerology
Chaldean Numerology
The numerical value of stack in Chaldean Numerology is: 4
Pythagorean Numerology
The numerical value of stack in Pythagorean Numerology is: 9
Examples of stack in a Sentence
The devices consist of a multilayer stack of materials.
Evacuate area NOW. Collapse of Piney Point Stack Imminent !
There was a big raging sea beneath Azure Window, suddenly, the arch collapsed into the sea with a loud whoomph, throwing up a huge spray. By the time the spray had faded, the stack had gone too. FOLLOW US ON FACEBOOK FOR MORE FOX LIFESTYLE NEWS Joseph Muscat, the prime minister of Malta, said on Facebook that losing the arch to corrosion was.
A lot of people are looking at warm stack, as they hope that the market will turn around quickly, cold stack is on their mind... but they haven't given up hope yet.
The main reason it'll take other PC vendors a while to catch up to Apple is because most of them don't control the whole stack of hardware and software, this tight integration between the two is Apple's main advantage.
Popularity rank by frequency of use
References
Translations for stack
From our Multilingual Translation Dictionary
- كومةArabic
- stohCzech
- Stapelspeicher, StapelGerman
- στοίβαGreek
- stakoEsperanto
- pila, apilarSpanish
- pinuEstonian
- pinota, pino, keko, läjä, kasaFinnish
- empiler, pileFrench
- cruach, gnìomhScottish Gaelic
- pilaGalician
- धुआँराHindi
- boglyaHungarian
- կույտArmenian
- troðröð, hlaði, stafliIcelandic
- accatastare, pilaItalian
- ערימהHebrew
- 塚, スタックJapanese
- დასტისGeorgian
- whakaputu, whakapipi, whakaapaapaMāori
- stapel, opstapelen, stapelenDutch
- stakkNorwegian
- stos, stertować, stertaPolish
- pilhaPortuguese
- pirway, pirwaQuechua
- căpiță, stivui, stivăRomanian
- кипа, стог, стопка, стекRussian
- stogSerbo-Croatian
- stackSwedish
- yığınTurkish
Get even more translations for stack »
Translation
Find a translation for the stack definition in other languages:
Select another language:
- - Select -
- 简体中文 (Chinese - Simplified)
- 繁體中文 (Chinese - Traditional)
- Español (Spanish)
- Esperanto (Esperanto)
- 日本語 (Japanese)
- Português (Portuguese)
- Deutsch (German)
- العربية (Arabic)
- Français (French)
- Русский (Russian)
- ಕನ್ನಡ (Kannada)
- 한국어 (Korean)
- עברית (Hebrew)
- Gaeilge (Irish)
- Українська (Ukrainian)
- اردو (Urdu)
- Magyar (Hungarian)
- मानक हिन्दी (Hindi)
- Indonesia (Indonesian)
- Italiano (Italian)
- தமிழ் (Tamil)
- Türkçe (Turkish)
- తెలుగు (Telugu)
- ภาษาไทย (Thai)
- Tiếng Việt (Vietnamese)
- Čeština (Czech)
- Polski (Polish)
- Bahasa Indonesia (Indonesian)
- Românește (Romanian)
- Nederlands (Dutch)
- Ελληνικά (Greek)
- Latinum (Latin)
- Svenska (Swedish)
- Dansk (Danish)
- Suomi (Finnish)
- فارسی (Persian)
- ייִדיש (Yiddish)
- հայերեն (Armenian)
- Norsk (Norwegian)
- English (English)
Word of the Day
Would you like us to send you a FREE new word definition delivered to your inbox daily?
Citation
Use the citation below to add this definition to your bibliography:
Style:MLAChicagoAPA
"stack." Definitions.net. STANDS4 LLC, 2025. Web. 15 Jan. 2025. <https://www.definitions.net/definition/stack>.
Discuss these stack definitions with the community:
Report Comment
We're doing our best to make sure our content is useful, accurate and safe.
If by any chance you spot an inappropriate comment while navigating through our website please use this form to let us know, and we'll take care of it shortly.
Attachment
You need to be logged in to favorite.
Log In