0%

21-letter words containing p, a, b

  • absorption hygrometer — a hygrometer that uses a hygroscopic chemical to absorb atmospheric moisture.
  • abyssinian guinea pig — a breed of short-haired guinea pig with rosettes all over its body
  • acceptable use policy — (networking)   (AUP) Rules applied by many transit networks which restrict the use to which the network may be put. A well known example is NSFNet which does not allow commercial use. Enforcement of AUPs varies with the network.
  • airborne command post — any of several converted commercial aircraft equipped with special communications and code gear, intended as flying bunkers for the president, secretary of defense, military commanders, or their designated replacements.
  • background processing — the ability of a system to perform a low-priority task while, at the same time, dealing with a main application
  • background projection — the projection from the rear of previously photographed material on a translucent screen, used as background for a television or motion-picture shot.
  • banach-tarski paradox — (mathematics)   It is possible to cut a solid ball into finitely many pieces (actually about half a dozen), and then put the pieces together again to get two solid balls, each the same size as the original. This paradox is a consequence of the Axiom of Choice.
  • barbiturate poisoning — poisoning caused by overdose of a barbiturate
  • barrier contraceptive — any form of contraceptive that prevents impregnation by physically preventing the sperm from reaching the egg
  • be at pains to do sth — If someone is at pains to do something, they are very eager and anxious to do it, especially because they want to avoid a difficult situation.
  • be in apple-pie order — If a room or a desk is in apple pie order, it is neat and tidy, and everything is where it should be.
  • 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.
  • bibliographic utility — an organization that maintains computerized bibliographic records and offers to its members or customers various products and services related to these records.
  • biological psychiatry — a school of psychiatric thought concerned with the medical treatment of mental disorders, especially through medication, and emphasizing the relationship between behavior and brain function and the search for physical causes of mental illness.
  • blot on the landscape — If you describe something such as a building as a blot on the landscape, you mean that you think it is very ugly and spoils an otherwise attractive place.
  • bluethroat pikeblenny — See under pikeblenny.
  • bonnie prince charlie — a member of the royal family that ruled in Scotland from 1371 to 1714 and in England from 1603 to 1714.
  • book of common prayer — the official book of church services of the Church of England, until 1980, when the Alternative Service Book was sanctioned
  • bottom-up programming — a programming technique in which lower-level modules are developed before higher-level modules.
  • brazilian pepper tree — a small Brazilian evergreen tree or shrub, Schinus terebinthifolius, of the cashew family, having inconspicuous white flowers and bright red fruit: the berries are used for Christmas decorations.
  • breath-of-life packet — (XEROX PARC) An Ethernet packet that contains bootstrap code, periodically sent out from a working computer to infuse the "breath of life" into any computer on the network that has crashed. Computers depending on such packets have sufficient hardware or firmware code to wait for (or request) such a packet during the reboot process. See also dickless workstation. The notional "kiss-of-death packet", with a function complementary to that of a breath-of-life packet, is recommended for dealing with hosts that consume too many network resources. Though "kiss-of-death packet" is usually used in jest, there is at least one documented instance of an Internet subnet with limited address-table slots in a gateway computer in which such packets were routinely used to compete for slots, rather like Christmas shoppers competing for scarce parking spaces.
  • bromine pentafluoride — a colorless, corrosive liquid, BrF 5 , used as an oxidizer in liquid rocket propellants.
  • buffalo carpet beetle — any of several small beetles of the family Dermestidae, the larvae of which are household pests, feeding on rugs and other woolen fabrics, especially Anthrenus scrophulariae (buffalo carpet beetle) and Attagenus piceus (black carpet beetle)
  • burroughs corporation — (company)   A company which merged with Sperry Univac to form Unisys Corporation. They produced the Datatron 200 series among other computers.
  • combination principle — Ritz combination principle.
  • 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.
  • decompression chamber — a chamber in which the pressure of air can be varied slowly for returning people from abnormal pressures to atmospheric pressure without inducing decompression sickness
  • developmental biology — the study of the development of multicellular organisms, including the study of the earliest stages of embryonic structure and tissue differentiation
  • 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
  • empirical probability — a measure or estimate of the degree of confidence one may have in the occurrence of an event, defined as the proportion observed in a sample
  • empty the wastebasket — If you empty the wastebasket, you remove its contents and put them in the trash.
  • epidermolysis bullosa — type of genetic skin disorder
  • equiangular hyperbola — a hyperbola with transverse and conjugate axes equal to each other.
  • 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
  • forward compatibility — (jargon)   The ability to accept input from later versions of itself. Forward compatibility is harder to achieve than backward compatibility, since, in the backward case, the input format is know whereas a forward compatible system needs to cope gracefully with unknown future features. An example of future compatibility is the stipulation that a web browser should ignore HTML tags it does not recognise. See also extensible.
  • 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.
  • great st bernard pass — St. Bernard, Great.
  • hyperbolic paraboloid — a paraboloid that can be put into a position such that its sections parallel to one coordinate plane are hyperbolas, with its sections parallel to the other two coordinate planes being parabolas.
  • hypogammaglobulinemia — A type of immune disorder characterised by a reduction in all types of gamma globulins.
  • imprecise probability — (probability)   A probability that is represented as an interval (as opposed to a single number) included in [0,1].
  • integer specbaseratio — SPECbase_int92
  • 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.
  • 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.
  • lap and diagonal belt — A lap and diagonal belt is a strap attached to a seat in a vehicle that extends horizontally in front of the hips and diagonally from the outer shoulder across the chest. You fasten it across your body in order to prevent yourself being thrown out of the seat if there is a sudden movement or stop.
  • lap and shoulder belt — a car seat belt

On this page, we collect all 21-letter words with P-A-B. It’s easy to find right word with a certain length. It is the easiest way to find 21-letter word that contains in P-A-B 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?