0%

19-letter words containing p, i, g, r

  • accompanying letter — a letter that comes with another document or enclosure
  • acoustic gramophone — a device for reproducing the sounds stored on a record: now usually applied to the nearly obsolete type that uses a clockwork motor and acoustic horn
  • active server pages — (web, programming)   (ASP) A scripting environment for Microsoft Internet Information Server in which you can combine HTML, scripts and reusable ActiveX server components to create dynamic web pages. IIS 4.0 includes scripting engines for Microsoft Visual Basic Scripting Edition (VBScript) and Microsoft JScript. ActiveX scripting engines for Perl and REXX are available through third-party developers.
  • aerial top dressing — the process of spreading lime, fertilizer, etc over farmland from an aeroplane
  • agitated depression — severe depression accompanied by extreme anxiety and agitation
  • 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.
  • angle of depression — depression (def 11).
  • apollonius of perga — ?261–?190 bc, Greek mathematician, remembered for his treatise on conic sections
  • application program — a computer program that is written and designed for a specific need or purpose
  • apres moi le deluge — after me the deluge
  • at one's fingertips — readily available and within one's mental grasp
  • atmospheric braking — a technique of reentry in which the vehicle is maneuvered in the upper atmosphere so as to lose velocity by utilizing drag without overheating.
  • auricular appendage — auricle (def 1b).
  • auricular-appendage — Anatomy. the projecting outer portion of the ear; pinna. Also called auricular appendage. an ear-shaped appendage projecting from each atrium of the heart. (loosely) the atrium.
  • 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
  • bargaining position — the position of a person, group, or organization in a negotiation, with respect to their ability to achieve a deal which is favourable to themselves
  • blue-ringed octopus — a highly venomous octopus, Octopus maculosus, of E Australia which exhibits blue bands on its tentacles when disturbed
  • breathing apparatus — an apparatus, usually consisting of tanks of air or oxygen and a mouthpiece, that enables the wearer to breath in difficult conditions such as a smoke-filled building
  • brightline spectrum — the spectrum of an incandescent substance appearing on a spectrogram as one or more bright lines against a dark background.
  • bring into the open — to make evident or public
  • canterbury pilgrims — the pilgrims whose stories are told in Chaucer's Canterbury Tales
  • captains courageous — a novel (1897) by Rudyard Kipling.
  • 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
  • champigny-sur-marne — a suburb of Paris, on the River Marne. Pop: 75 556 (2006)
  • chemical processing — Chemical processing is a way of making changes to chemical compounds.
  • chinese finger trap — a child's toy, consisting of a small cylinder of woven straw or paper into which the forefingers are placed, one in each end: the harder one pulls, the more securely the fingers are held.
  • 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
  • community programme — (in Britain) a former government scheme to provide temporary work for people unemployed for over a year
  • comparison shopping — Comparison shopping is comparing similar products from different stores or suppliers. Comparison shopping services are popular on the Internet.
  • compression molding — a method of molding thermosetting plastic by closing a mold on it, forming the material by heat and pressure.
  • corporate venturing — the provision of venture capital by one company for another in order to obtain information about the company requiring capital or as a step towards acquiring it
  • counter-programming — to schedule (a broadcast on radio or television) to compete with one on another station.
  • counterpoise bridge — another name for bascule bridge
  • cox's orange pippin — a variety of eating apple with sweet flesh and a red-tinged green skin
  • creeping bent grass — a grass, Agrostis stolonifera, grown as a pasture grass in Europe and North America: roots readily from the stem
  • creeping cinquefoil — any of several plants belonging to the genus Potentilla, of the rose family, having yellow, red, or white five-petaled flowers, as P. reptans (creeping cinquefoil) of the Old World, or P. argentea (silvery cinquefoil) of North America.
  • creeping featuritis — (jargon)   /kree'ping fee'-chr-i:`t*s/ A variant of creeping featurism, with its own spoonerism: "feeping creaturitis". Some people like to reserve this form for the disease as it actually manifests in software or hardware, as opposed to the lurking general tendency in designers' minds. -ism means "condition" or "pursuit of", whereas -itis usually means "inflammation of".
  • criminal psychology — study of criminals' minds
  • 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
  • debugging by printf — (programming)   The debugging technique where the programmer inserts print statements into a program so that when run the program leaves a "trail of breadcrumbs" allowing him to see which parts were executed. The information output may just be a short string to indicate that a particular point in the code has been reached or it might be a complete stack trace. The output typically just goes to the window or terminal in which the program is running or may be written to a log file.
  • descriptive grammar — an approach to grammar that is concerned with reporting the usage of native speakers without reference to proposed norms of correctness or advocacy of rules based on such norms.
  • 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.
  • dry-bulk cargo ship — a ship that carries an unpackaged dry cargo such as coal or grain; bulk carrier
  • electrocardiographs — Plural form of electrocardiograph.

On this page, we collect all 19-letter words with P-I-G-R. 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-I-G-R 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?