0%

19-letter words containing a, l, p, r, g, t

  • 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
  • aerial top dressing — the process of spreading lime, fertilizer, etc over farmland from an aeroplane
  • 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.
  • application program — a computer program that is written and designed for a specific need or purpose
  • ballistocardiograph — an instrument that records the slight recoil of the body, while on a special bed, caused by the contractions of the heart: used to measure cardiac pumping power and the elasticity of the aorta
  • beta-naphthyl group — See under naphthyl.
  • camouflage passport — a passport from a non-existent country intended to conceal the bearer's true nationality (from hijackers, kidnappers, etc)
  • canterbury pilgrims — the pilgrims whose stories are told in Chaucer's Canterbury Tales
  • carbon steel piping — Carbon steel piping is pipes made of steel with carbon as the main alloying component, used for transporting fluids.
  • chain-reacting pile — nuclear reactor
  • chromatographically — With regard to, or by by using chromatography.
  • cinematographically — a motion-picture projector.
  • circulating capital — the non-permanent raw materials and operating expenses that are used up to produce other goods or services
  • college-preparatory — preparing a student for academic work at the college level.
  • complementary angle — either of two angles whose sum is 90°
  • complete quadrangle — a plane figure consisting of four points connected by six lines
  • comptroller general — the director of the General Accounting Office
  • dangling participle — a participle intended to modify a noun but having the wrong grammatical relationship to it as for example having left in the sentence Having left Europe for good, Peter's future seemed bleak indeed
  • digital linear tape — (storage)   (DLT) A kind of magnetic tape drive originally developed by DEC and now marketed by Quantum. DLT drives implement the Digital Lempel Ziv 1 (DLZ1) compression algorithm in a combination of hardware and firmware. They use a popular chip by Stac (now hi/fn) to do the string searching. Counting, sorting and Huffman coding are done in firmware (with hardware support for the Huffman algorithm?). In April 1997 DLT drives can transfer 5 megabytes per second and can store 35 gigabytes on a single cartridge. Compression might roughly double these figures.
  • digital photography — the taking or manipulation of photographs that are stored as data files on a computer.
  • display advertising — display ads taken collectively.
  • electrocardiographs — Plural form of electrocardiograph.
  • electrocardiography — The measurement of electrical activity in the heart and the recording of such activity as a visual trace (on paper or on an oscilloscope screen), using electrodes placed on the skin of the limbs and chest.
  • electron micrograph — a photograph or image of a specimen taken using an electron microscope
  • electronic graphics — (on television) the production of graphic designs and text by electronic means
  • electropalatography — the study of the movements of the tongue during speech using touch-sensitive electrodes in the mouth linked to a computer
  • electrophotographic — Of or pertaining to electrophotography.
  • entitlement program — a government program providing defined sectors of the population with social benefits
  • evaporative cooling — a method of reducing temperature that uses evaporation
  • exophthalmic goiter — a disease of unknown cause characterized by enlargement of the thyroid gland, overproduction of the thyroid hormone, and abnormal protrusion of the eyeballs
  • exophthalmic goitre — a form of hyperthyroidism characterized by enlargement of the thyroid gland, protrusion of the eyeballs, increased basal metabolic rate, and weight loss
  • general partnership — a partnership in which each of the partners is fully liable for the firm's debts.
  • general post office — (in the U.S. postal system) the main post office of a city, county, etc., that also has branch post offices. Abbreviation: G.P.O., GPO.
  • gentleman-pensioner — (formerly) a gentleman-at-arms.
  • geocentric parallax — the apparent displacement of an observed object due to a change in the position of the observer.
  • gregorian telescope — a telescope similar in design to the Cassegrainian telescope but less widely used.
  • gulf of carpentaria — a shallow inlet of the Arafura Sea, in N Australia between Arnhem Land and Cape York Peninsula
  • historiographically — In a historiographical manner; by means of a historiography.
  • hysterosalpingogram — An X-ray image taken during hysterosalpingography.
  • imperative language — (language)   Any programming language that specifies explicit manipulation of the state of the computer system, not to be confused with a procedural language, which specifies an explicit sequence of steps to perform. An example of an imperative (but non-procedural) language is a data manipulation language for a relational database management system. This specifies changes to the database but does not necessarily require anyone to specify a sequence of steps. Both contrast with declarative languages, which specify neither explicit state manipulation nor a sequence of steps.
  • intangible property — intellectual property, rights ownership
  • intergalactic space — the region of physical space that exists between galaxies. The density is negligible, and close to an almost total vacuum
  • jumping bristletail — any of several thysanuran insects that live in dark, warm, moist places, as under leaves, bark, and dead tree trunks and along rocky seacoasts, and are active jumpers, making erratic leaps when disturbed.
  • kellogg-briand pact — a treaty renouncing war as an instrument of national policy and urging peaceful means for the settlement of international disputes, originally signed in 1928 by 15 nations, later joined by 49 others.
  • kirlian photography — a photographic process that supposedly records electrical discharges naturally emanating from living objects, producing an auralike glow surrounding the object on a photographic plate or film with which the object is in direct contact.
  • knights hospitalers — a member of the religious and military order (Knights Hospitalers or Knights of St. John of Jerusalem) originating about the time of the first Crusade (1096–99) and taking its name from a hospital at Jerusalem.
  • load-bearing printf — (programming, humour)   The kind of bug present in a program which works correctly when producing debug output but fails when the debugging is turned off. The expression combines load-bearing wall and printf as used in debugging by printf.
  • longitudinal parity — (storage, communications)   An extra byte (or word) appended to a block of data in order to reveal corruption of the data. Bit n of this byte indicates whether there was an even or odd number of "1" bits in bit position n of the bytes in the block. The parity byte is computed by XORing the data bytes in the block. Longitudinal parity allows single bit errors to be detected.

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