0%

21-letter words containing c, a, b, l, i, n

  • aerodynamic stability — Aerodynamic stability is the way that a moving vehicle reacts to changes in air caused by passing vehicles.
  • antiballistic missile — a missile designed to destroy an incoming ballistic missile before it reaches its target
  • axiom of countability — the property satisfied by a topological space in which the neighborhood system of each point has a base consisting of a countable number of neighborhoods (first axiom of countability) or the property satisfied by a topological space that has a base for its topology consisting of a countable number of subsets of the space (second axiom of countability)
  • baja california norte — a state of NW Mexico, in the N part of the Lower California peninsula. Capital: Mexicali. Pop: 2 487 700 (2000). Area: about 71 500 sq km (27 600 sq miles)
  • ball-and-socket joint — a coupling between two rods, tubes, etc, that consists of a spherical part fitting into a spherical socket, allowing free movement within a specific conical volume
  • basis of articulation — a configuration of the speech tract that represents the most neutral articulatory configuration for a given language.
  • be in black and white — You say that something is in black and white when it has been written or printed, and not just said.
  • behavioural contagion — the spread of a particular type of behaviour, such as crying, through a crowd or group of people
  • benzalkonium chloride — a white or yellowish-white, water-soluble mixture of ammonium chloride derivatives having the structure C 8 H 10 NRCl, where R is a mixture of radicals ranging from C 8 H 17 – to C 18 H 37 –, that occurs as an amorphous powder or in gelatinous lumps: used chiefly as an antiseptic and a disinfectant.
  • beta-naphthyl radical — Also called alpha-naphthyl group, alpha-naphthyl radical. the univalent group C 1 0 H 7 –, having a replaceable hydrogen atom in the first, or alpha, position; 1-naphthyl group.
  • bibliographic control — the identification, description, analysis, and classification of books and other materials of communication so that they may be effectively organized, stored, retrieved, and used when needed.
  • binomial nomenclature — a system for naming plants and animals by means of two Latin names: the first indicating the genus and the second the species to which the organism belongs, as in Panthera leo (the lion)
  • biobehavioral science — any of the various branches of the life sciences, as neurobiology, neurochemistry, or neuroendocrinology, that deal with biological aspects of behavior.
  • black-and-tan terrier — Manchester terrier
  • blackburn with darwen — a unitary authority in NW England, in Lancashire. Pop: 139 800 (2003 est). Area: 137 sq km (53 sq miles)
  • boiling-water reactor — a nuclear reactor using water as coolant and moderator, steam being produced in the reactor itself: enriched uranium oxide cased in zirconium is the fuel
  • bonnie prince charlie — a member of the royal family that ruled in Scotland from 1371 to 1714 and in England from 1603 to 1714.
  • brazilian firecracker — a tropical American twining plant, Manettia inflata, of the madder family, having opposite, lance-shaped leaves and a red, tubular flower with yellow tips, grown in the southern U.S. as a trellis plant.
  • caroline of brunswick — 1768–1821, wife of George IV of the United Kingdom: tried for adultery (1820)
  • chequebook journalism — Chequebook journalism is the practice of paying people large sums of money for information about crimes or famous people in order to get material for newspaper articles.
  • civilian review board — a quasi-judicial board of appointed or elected citizens that investigates complaints against the police.
  • collective bargaining — When a trade union engages in collective bargaining, it has talks with an employer about its members' pay and working conditions.
  • combination principle — Ritz combination principle.
  • comfortably-furnished — containing comfortable furniture
  • 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.
  • 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
  • deoxyribonucleic acid — DNA
  • faculty board meeting — a meeting of the governing body of a faculty
  • 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.
  • 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.
  • hindu-arabic numerals — Arabic numeral.
  • hubble classification — a method of classifying galaxies depending on whether they are elliptical, spiral, barred spiral, or irregular
  • irish republican army — an underground Irish nationalist organization founded to work for Irish independence from Great Britain: declared illegal by the Irish government in 1936, but continues activity aimed at the unification of the Republic of Ireland and Northern Ireland. Abbreviation: IRA, I.R.A.
  • knights of st columba — an international, semi-secret fraternal and charitable order for Catholic laymen, which originated in New Haven, Connecticut in 1882 (the Knights of Columbus)
  • laboratory technician — sb who assists in a laboratory
  • least significant bit — (data)   (LSB) Bit zero, the bit of a binary number giving the number of ones, the last or rightmost bit when the number is written in the usual way.
  • leave sb in the lurch — If someone leaves you in the lurch, they go away or stop helping you at a very difficult time.
  • luck was on sb's side — If you say that luck was on someone's side, you mean that they succeeded in something by chance as well as by their own efforts or ability.
  • magnetic permeability — permeability (def 2).
  • magnificent riflebird — a bird of paradise, Craspedophora magnifica
  • megaloblastic anaemia — any anaemia, esp pernicious anaemia, characterized by the presence of megaloblasts in the blood or bone marrow
  • national public radio — a nationwide network of nonprofit radio stations supported in part by U.S. government funds distributed by the Corporation for Public Broadcasting, often affiliated with a public television station or educational institution. Abbreviation: NPR.
  • negotiable securities — securities that are legally transferable in title from one party to another
  • nellis air force base — the largest air base in the U.S. Air Force's Tactical Air Command, located near Las Vegas, Nev., and developed from what began in 1941 as a U.S. Army Air Corps field.
  • oblique circular cone — a cone whose surface is generated by lines joining a fixed point to the points of a circle, the fixed point lying on a line that is not perpendicular to the circle at its center.
  • open graphics library — (graphics, library)   (OpenGL) A multi-platform software interface to graphics hardware, supporting rendering and imaging operations. The OpenGL interface was developed by Silicon Graphics, who license it to other vendors. The OpenGL graphics interface consists of several hundred functions operating on 2D and 3D objects, supporting basic techniques, such as modelling and smooth shading, and advanced techniques, such as texture mapping and motion blur. Many operations require a frame buffer. OpenGL is network-transparent, and a common extension to the X Window System allows an OpenGL client to communicate across a network with a different vendor's OpenGL server. OpenGL is based on Silicon Graphics' proprietary IRIS GL.
  • pipelined burst cache — Pipeline Burst Cache
  • public administration — the implementation of public policy, largely by the executive branch.

On this page, we collect all 21-letter words with C-A-B-L-I-N. It’s easy to find right word with a certain length. It is the easiest way to find 21-letter word that contains in C-A-B-L-I-N to use in Scrabble or Crossword puzzles

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?