0%

19-letter words containing p, l, a, t, e

  • a slap on the wrist — A slap on the wrist is a warning or a punishment that is not very severe.
  • absolute complement — complement (def 8).
  • absolute impediment — a fact or circumstance that disqualifies a person from lawful marriage.
  • accelerated program — a course of study which allows students to progress through their education more quickly than usual
  • accompanying letter — a letter that comes with another document or enclosure
  • acknowledgment slip — a piece of paper that you sign as proof of having received a letter, parcel, payment, etc
  • aerial top dressing — the process of spreading lime, fertilizer, etc over farmland from an aeroplane
  • aladdin enterprises — (company)   A small, privately owned, US software consulting and development company, founded in 1986, best known as the original developer of Ghostscript. Address: San Francisco Peninsula, California, USA. Not to be confused with Aladdin Systems, Inc..
  • algebraic data type — (programming)   (Or "sum of products type") In functional programming, new types can be defined, each of which has one or more constructors. Such a type is known as an algebraic data type. E.g. in Haskell we can define a new type, "Tree": data Tree = Empty | Leaf Int | Node Tree Tree with constructors "Empty", "Leaf" and "Node". The constructors can be used much like functions in that they can be (partially) applied to arguments of the appropriate type. For example, the Leaf constructor has the functional type Int -> Tree. A constructor application cannot be reduced (evaluated) like a function application though since it is already in normal form. Functions which operate on algebraic data types can be defined using pattern matching: depth :: Tree -> Int depth Empty = 0 depth (Leaf n) = 1 depth (Node l r) = 1 + max (depth l) (depth r) The most common algebraic data type is the list which has constructors Nil and Cons, written in Haskell using the special syntax "[]" for Nil and infix ":" for Cons. Special cases of algebraic types are product types (only one constructor) and enumeration types (many constructors with no arguments). Algebraic types are one kind of constructed type (i.e. a type formed by combining other types). An algebraic data type may also be an abstract data type (ADT) if it is exported from a module without its constructors. Objects of such a type can only be manipulated using functions defined in the same module as the type itself. In set theory the equivalent of an algebraic data type is a discriminated union - a set whose elements consist of a tag (equivalent to a constructor) and an object of a type corresponding to the tag (equivalent to the constructor arguments).
  • algebraic operation — any of the mathematical operations of addition, subtraction, multiplication, division, raising to a power, or extraction of a root.
  • all-points bulletin — An all-points bulletin is a message sent by a police force to all its officers. The abbreviation APB is also used.
  • alphabetic language — (human language)   A written human language in which symbols reflect the pronunciation of the words. Examples are English, Greek, Russian, Thai, Arabic and Hebrew. Alphabetic languages contrast with ideographic languages.
  • alphonse and gaston — marked by a ritualistic courtliness in which two often competing participants graciously but stubbornly defer to each other: a kind of Alphonse and Gaston act in which each man insisted the other go through the doorway first.
  • alternative pathway — the activation of complement by contact with polysaccharides on bacteria, protozoa, or yeast cells: a nonspecific immune response. Compare classical pathway.
  • ancillary equipment — Ancillary equipment is machines and other technical things which are used with the main items of equipment to create a complete system.
  • antarctic peninsula — the largest peninsula of Antarctica, between the Weddell Sea and the Pacific: consists of Graham Land in the north and the Palmer Peninsula in the south
  • anthropic principle — the cosmological theory that the presence of life in the universe limits the ways in which the very early universe could have evolved
  • anthropocentrically — regarding the human being as the central fact of the universe.
  • application testing — system testing
  • applied linguistics — linguistic theory as applied to such fields as lexicography, psychology, the teaching of reading, the creation of orthographies, and especially language teaching.
  • appraisal interview — an interview by the manager of an employee who is being appraised
  • as things/people go — You use expressions like as things go or as children go when you are describing one person or thing and comparing them with others of the same kind.
  • attempt the life of — to try to kill
  • backward compatible — backward compatibility
  • bacteriochlorophyll — a pale blue-gray form of chlorophyll that is unique to the photosynthetic but anaerobic purple bacteria.
  • balance of payments — A country's balance of payments is the difference, over a period of time, between the payments it makes to other countries for imports and the payments it receives from other countries for exports.
  • beta-naphthyl group — See under naphthyl.
  • binomial experiment — an experiment consisting of a fixed number of independent trials each with two possible outcomes, success and failure, and the same probability of success. The probability of a given number of successes is described by a binominal distribution
  • black carpenter ant — a large, black ant, Camponotus pennsylvanicus, that lives in damp wood in nature or in houses, where it can cause considerable damage by boring or tunneling.
  • black 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)
  • blackstrap molasses — the molasses remaining after the maximum quantity of sugar has been extracted from the raw material
  • blast from the past — You can use a blast from the past as a light-hearted way of referring to something such as an old song or fashion that you hear or notice again, and which reminds you of an earlier time.
  • brush-tailed possum — any of several widely-distributed Australian possums of the genus Trichosurus
  • calculate a premium — If you calculate a premium, you decide how much a policyholder has to pay for insurance cover.
  • camouflage passport — a passport from a non-existent country intended to conceal the bearer's true nationality (from hijackers, kidnappers, etc)
  • cannot help oneself — to be the victim of circumstances, a habit, etc.
  • canterbury pilgrims — the pilgrims whose stories are told in Chaucer's Canterbury Tales
  • capacitive coupling — the connection of two or more circuits by means of a capacitor.
  • capital expenditure — expenditure on acquisitions of or improvements to fixed assets
  • carbon steel piping — Carbon steel piping is pipes made of steel with carbon as the main alloying component, used for transporting fluids.
  • caterpillar tractor — a tractor powered by a Caterpillar track
  • chain-reacting pile — nuclear reactor
  • champagne lifestyle — a lifestyle involving the enjoyment of luxuries and expensive pleasures
  • champagne socialist — a professed socialist who enjoys an extravagant lifestyle
  • chemolithoautotroph — (biology) A chemoautotroph or lithoautotroph.
  • cinematographically — a motion-picture projector.
  • coherent parallel c — (language)   A data parallel version of C.
  • college-preparatory — preparing a student for academic work at the college level.
  • columnar epithelium — epithelium consisting of one or more layers of elongated cells of cylindrical or prismatic shape.
  • command line option — (software)   (Or "option", "flag", "switch", "option switch") An argument to a command that modifies its function rather than providing data. Options generally start with "-" in Unix or "/" in MS-DOS. This is usually followed by a single letter or occasionally a digit. More recently, GNU software adopted the --longoptionname style, usually in addition to traditional, single-character, -x style equivalents. Some commands require each option to be a separate argument, introduced by a new "-" or "/", others allow multiple option letters to be concatenated into a single argument with a single "-" or "/", e.g. "ls -al". A few Unix commands (e.g. ar, tar) allow the "-" to be omitted. Some options may or must be followed by a value, e.g. "cc prog.c -o prog", sometimes with and sometimes without an intervening space.

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