0%

21-letter words containing n, a, b, t, e

  • bryan-chamorro treaty — a treaty (1914) between the U.S. and Nicaragua by which the U.S. secured exclusive rights to build a canal across Nicaragua, to connect the Atlantic and Pacific.
  • bulletin board system — (communications, application)   (BBS, bboard /bee'bord/, message board, forum; plural: BBSes) A computer and associated software which typically provides an electronic message database where people can log in and leave messages. Messages are typically split into topic groups similar to the newsgroups on Usenet (which is like a distributed BBS). Any user may submit or read any message in these public areas. The term comes from physical pieces of board on which people can pin messages written on paper for general consumption - a "physical bulletin board". Ward Christensen, the programmer and operator of the first BBS (on-line 1978-02-16) called it a CBBS for "computer bulletin board system". Since the rise of the World-Wide Web, the term has become antiquated, though the concept is more popular than ever, with many websites featuring discussion areas where users can post messages for public consumption. Apart from public message areas, some BBSes provided archives of files, personal electronic mail and other services of interest to the system operator (sysop). Thousands of BBSes around the world were run from amateurs' homes on MS-DOS boxes with a single modem line each. Although BBSes were traditionally the domain of hobbyists, many connected directly to the Internet (accessed via telnet), others were operated by government, educational, and research institutions. Fans of Usenet or the big commercial time-sharing bboards such as CompuServe, CIX and GEnie tended to consider local BBSes the low-rent district of the hacker culture, but they helped connect hackers and users in the personal-micro and let them exchange code. Use of this term for a Usenet newsgroup generally marks one either as a newbie fresh in from the BBS world or as a real old-timer predating Usenet.
  • bursting at the seams — If a place is very full, you can say that it is bursting at the seams.
  • catherine of braganza — 1638–1705, wife of Charles II of England, daughter of John IV of Portugal
  • clayton-bulwer treaty — an agreement between the U.S. and Great Britain in 1850 guaranteeing that any canal built to connect the Atlantic and Pacific across Central America would be jointly controlled, open to all nations, and unfortified.
  • collective bargaining — When a trade union engages in collective bargaining, it has talks with an employer about its members' pay and working conditions.
  • column address strobe — (hardware)   (CAS) A signal sent from a processor (or memory controller) to a dynamic random-access memory (DRAM) (qv) circuit to indicate that the column address lines are valid.
  • combination principle — Ritz combination principle.
  • comfortably-furnished — containing comfortable furniture
  • constant mesh gearbox — A constant mesh gearbox is a type of transmission in which all forward gear pairs remain engaged.
  • consummatory behavior — a behavior pattern that occurs in response to a stimulus and that achieves the satisfaction of a specific drive, as the eating of captured prey by a hungry predator (distinguished from appetitive behavior).
  • continental breakfast — A continental breakfast is breakfast that consists of food such as bread, butter, jam, and a hot drink. There is no cooked food.
  • convertible insurance — any form of life or health insurance, either individual or group, that enables the insured to change or convert the insurance to another form, as term to whole life insurance or group to individual health insurance.
  • cornella de llobregat — a city in N Spain.
  • cost-benefit analysis — an analysis that takes into account the costs of a project and its benefits to society, as well as the revenue it generates
  • countably compact set — a set for which every cover consisting of a countable number of sets has a subcover consisting of a finite number of sets.
  • darby and joan settee — a settee having a back resembling two chair backs.
  • death by misadventure — a possible verdict in a coroner's court, indicating that death was due to an accident not to a crimes or somebody's negligence
  • developmental biology — the study of the development of multicellular organisms, including the study of the earliest stages of embryonic structure and tissue differentiation
  • disestablishmentarian — a person who favors the separation of church and state, especially the withdrawal of special rights, status, and support granted an established church by a state; an advocate of disestablishing a state church.
  • double predestination — the doctrine that God has foreordained both those who will be saved and those who will be damned.
  • double spanish burton — a tackle having one standing block and two running blocks, giving a mechanical advantage of five, neglecting friction.
  • empire state building — New York City skyscraper
  • european central bank — the central bank of the European Union, established in 1998 to oversee the process of European Monetary Union and subsequently to direct monetary policy within the countries using the euro
  • extensible vax editor — (text, tool)   (EVE) A DEC product implemented using DEC's Text Processing Utility (TPU).
  • faculty board meeting — a meeting of the governing body of a faculty
  • fall ill/be taken ill — If you fall ill or are taken ill, you suddenly become ill.
  • file allocation table — (file system)   (FAT) The component of an MS-DOS or Windows 95 file system which describes the files, directories, and free space on a hard disk or floppy disk. A disk is divided into partitions. Under the FAT file system each partition is divided into clusters, each of which can be one or more sectors, depending on the size of the partition. Each cluster is either allocated to a file or directory or it is free (unused). A directory lists the name, size, modification time and starting cluster of each file or subdirectory it contains. At the start of the partition is a table (the FAT) with one entry for each cluster. Each entry gives the number of the next cluster in the same file or a special value for "not allocated" or a special value for "this is the last cluster in the chain". The first few clusters after the FAT contain the root directory. The FAT file system was originally created for the CP/M[?] operating system where files were catalogued using 8-bit addressing. MS DOS's FAT allows only 8.3 filenames. With the introduction of MS-DOS 4 an incompatible 16-bit FAT (FAT16) with 32-kilobyte clusters was introduced that allowed partitions of up to 2 gigabytes. Microsoft later created FAT32 to support partitions larger than two gigabytes and pathnames greater that 256 characters. It also allows more efficient use of disk space since clusters are four kilobytes rather than 32 kilobytes. FAT32 was first available in OEM Service Release 2 of Windows 95 in 1996. It is not fully backward compatible with the 16-bit and 8-bit FATs. Compare: NTFS.
  • franco-belgian system — French system.
  • from dan to beersheba — from one end of Israel to the other: Judg. 20:1
  • gas blanketed storage — Gas blanketed storage is the use of gas to fill empty space in a storage tank.
  • generic type variable — (programming)   (Also known as a "schematic type variable"). Different occurrences of a generic type variable in a type expression may be instantiated to different types. Thus, in the expression let id x = x in (id True, id 1) id's type is (for all a: a -> a). The universal quantifier "for all a:" means that a is a generic type variable. For the two uses of id, a is instantiated to Bool and Int. Compare this with let id x = x in let f g = (g True, g 1) in f id This looks similar but f has no legal Hindley-Milner type. If we say f :: (a -> b) -> (b, b) this would permit g's type to be any instance of (a -> b) rather than requiring it to be at least as general as (a -> b). Furthermore, it constrains both instances of g to have the same result type whereas they do not. The type variables a and b in the above are implicitly quantified at the top level: f :: for all a: for all b: (a -> b) -> (b, b) so instantiating them (removing the quantifiers) can only be done once, at the top level. To correctly describe the type of f requires that they be locally quantified: f :: ((for all a: a) -> (for all b: b)) -> (c, d) which means that each time g is applied, a and b may be instantiated differently. f's actual argument must have a type at least as general as ((for all a: a) -> (for all b: b)), and may not be some less general instance of this type. Type variables c and d are still implicitly quantified at the top level and, now that g's result type is a generic type variable, any types chosen for c and d are guaranteed to be instances of it. This type for f does not express the fact that b only needs to be at least as general as the types c and d. For example, if c and d were both Bool then any function of type (for all a: a -> Bool) would be a suitable argument to f but it would not match the above type for f.
  • get one's breath back — When you get your breath back after doing something energetic, you start breathing normally again.
  • give sb a green light — If someone in authority gives you a green light, they give you permission to do something.
  • give sb the runaround — If someone gives you the runaround, they deliberately do not give you all the information or help that you want, and send you to another person or place to get it.
  • goldbach's conjecture — the conjecture that every even number greater than two is the sum of two prime numbers
  • great st bernard pass — St. Bernard, Great.
  • greenwich observatory — the national astronomical observatory of Great Britain, housed in a castle in E Sussex; formerly located at Greenwich.
  • horizontal stabilizer — the horizontal surface, usually fixed, of an aircraft empennage, to which the elevator is hinged.
  • hubble classification — a method of classifying galaxies depending on whether they are elliptical, spiral, barred spiral, or irregular
  • in bad/good/etc taste — If you say that something that is said or done is in bad taste or in poor taste, you mean that it is offensive, often because it concerns death or sex and is inappropriate for the situation. If you say that something is in good taste, you mean that it is not offensive and that it is appropriate for the situation.
  • integer specbaseratio — SPECbase_int92
  • international brigade — a military force that fought on the Republican side in the Spanish Civil War, consisting of volunteers (predominantly socialists and communists) from many countries
  • intersubstitutability — a person or thing acting or serving in place of another.
  • johann sebastian bach — Johann Sebastian [yoh-hahn si-bas-chuh n;; German yoh-hahn zey-bahs-tee-ahn] /ˈyoʊ hɑn sɪˈbæs tʃən;; German ˈyoʊ hɑn zeɪˈbɑs tiˌɑn/ (Show IPA), 1685–1750, German organist and composer.
  • joseph bonaparte gulf — an inlet of the Timor Sea in N Australia. Width: 360 km (225 miles)
  • jump on the bandwagon — do sth because it is popular
  • keep the ball rolling — a spherical or approximately spherical body or shape; sphere: He rolled the piece of paper into a ball.
  • laboratory technician — sb who assists in a laboratory
  • language-based editor — language-sensitive editor
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?