0%

27-letter words containing o, l, d, r, u

  • address resolution protocol — (networking, protocol)   (ARP) A method for finding a host's Ethernet address from its Internet address. The sender broadcasts an ARP packet containing the Internet address of another host and waits for it (or some other host) to send back its Ethernet address. Each host maintains a cache of address translations to reduce delay and loading. ARP allows the Internet address to be independent of the Ethernet address but it only works if all hosts support it. ARP is defined in RFC 826. The alternative for hosts that do not do ARP is constant mapping. See also proxy ARP, reverse ARP.
  • america's multimedia online — (company, web)   (AMO) An Internet technologies company which invented Never Offline in 1995 and was officially started in 1996. E-mail: AMO <[email protected]>. Address: Albuquerque, NM, USA.
  • aperture for drilling fluid — An aperture for drilling fluid is an opening for controlling the flow of drilling mud.
  • applicative order reduction — (programming)   An evaluation strategy under which an expression is evaluated by repeatedly evaluating its leftmost innermost redex. This means that a function's arguments are evaluated before the function is applied. This method will not terminate if a function is given a non-terminating expression as an argument even if the function is not strict in that argument. Also known as call-by-value since the values of arguments are passed rather than their names. This is the evaluation strategy used by ML, Scheme, Hope and most procedural languages such as C and Pascal. See also normal order reduction, parallel reduction.
  • audio processing technology — (company)   (APT) A company that produces codecs based on predictive analysis rather than frequency coding.
  • audit bureau of circulation — an organization that collects, audits, and publishes monthly circulation figures for newspapers and magazines
  • back end generator language — Back End Generator
  • capabilities maturity model — Capability Maturity Model
  • cardiovascular conditioning — enhancement of heart and circulatory function produced by regular vigorous aerobic exercise, as jogging, swimming, or cycling.
  • certified public accountant — A certified public accountant is someone who has received a certificate stating that he or she is qualified to work as an accountant within a particular state. The abbreviation CPA is also used.
  • communicable disease center — former name of Centers for Disease Control.
  • constructive solid geometry — (graphics)   (CSG) A method used in solid modeling to describe the geometry of complex three-dimensional scenes by applying set operations (union, difference, intersection) to primitive shapes (cuboids, cylinders, prisms, pyramids, spheres and cones). See also CSG-tree.
  • control and status register — (hardware)   (CSR) A register in most CPUs which stores additional information about the results of machine instructions, e.g. comparisons. It usually consists of several independent flags such as carry, overflow and zero. The CSR is chiefly used to determine the outcome of conditional branch instructions or other forms of conditional execution.
  • court of domestic relations — a court, usually with a limited jurisdiction, that handles legal cases involving a family, especially controversies between parent and child or between the marriage partners.
  • crude oil preparation plant — A crude oil preparation plant is equipment used for processing crude oil to get a particular product or amount.
  • crude oil refining capacity — The crude oil refining capacity is the amount that is produced in a refinery each day.
  • democratic-republican party — the antifederalist party originally led by Thomas Jefferson, which developed into the modern Democratic Party
  • digital express group, inc. — (Digex) The largest Internet provider in the Washington metropolitan area with POPs in Maryland, Virginia, New Jersey, New York and California.
  • doesn't suffer fools gladly — If you do not suffer fools gladly, you are not patient with people who you think are stupid.
  • duchenne muscular dystrophy — a common hereditary form of muscular dystrophy, usually affecting young males, characterized by the severe weakening of the skeletal muscles, esp. the respiratory muscles
  • educational welfare officer — (in Britain) a local education authority worker whose job it is to find out whether difficulties outside school are contributing to a child's classroom problems or irregular attendance and who may intervene to help the child to benefit more from schooling
  • federal republic of germany — official name of Germany.
  • fly-on-the-wall documentary — a documentary made by filming people as they do the things they normally do, rather than by interviewing them or asking them to talk directly to the camera
  • grow out of one's knowledge — to behave in a presumptuous or conceited manner
  • hand-held personal computer — palmtop
  • haul/drag sb over the coals — If a person in authority hauls or drags someone over the coals, they speak to them severely about something foolish or wrong that they have done.
  • indefinite relative pronoun — a relative pronoun without an antecedent, as whoever in They gave tickets to whoever wanted them.
  • index librorum prohibitorum — a list of books forbidden to be read except from expurgated editions or by special permission.
  • insulin resistance syndrome — Pathology. a group of medical conditions present simultaneously in a patient, as high blood pressure, low HDL cholesterol levels, and an excess of abdominal fat, that increases a person's risk of heart disease, stroke, and diabetes. Also called insulin resistance syndrome.
  • international monetary fund — an international organization that promotes the stabilization of the world's currencies and maintains a monetary pool from which member nations can draw in order to correct a deficit in their balance of payments: a specialized agency of the United Nations. Abbreviation: IMF, I.M.F.
  • internet foundation classes — (language, library, programming, standard)   (IFC) A library of classes used in the creation of Java applets with GUIs. Created by Netscape, the Internet Foundation Classes provide GUI elements, as well as classes for Applications Services, Security, Messaging, and Distributed Objects. The IFC code, which is exclusively Java, is layered on top of the Java Abstract Windowing Toolkit (AWT), thus preserving platform independence. The AWT and IFC collectively form the Java Foundation Classes, which provide a standardised framework for developing powerful Java applications.
  • joint and several guarantee — a legal guarantee undertaken by multiple people in which any one guarantor can be held fully responsible for repaying the whole of the debt despite each guarantor only being partially responsible for that debt
  • keep body and soul together — the physical structure and material substance of an animal or plant, living or dead.
  • linux documentation project — (project)   (LDP) A team of volunteers developing documentation for the Linux operating system. The LDP aims to handle all of the issues of Linux documentation, ranging from on-line documentation to printed manuals, covering topics such as installing, using, and running Linux. The LDP has no central organisation; anyone can join in.
  • little-lord-fauntleroy-suit — (italics) a children's novel (1886) by Frances H. Burnett.
  • measure of central tendency — a statistic that in some way specifies the central tendency of a sample of measurements, as the mean, median, or mode.
  • military-industrial complex — a network of a nation's military force together with all of the industries that support it.
  • multiple document interface — (programming)   (MDI) The ability of an application program to show windows giving views of more than one document at a time. The opposite is Single Document Interface (SDI).
  • network definition language — (NDL) The language used to program the DCP (Data Communications Processor) on Burroughs Large System. Version: NDL II.
  • old chestnut/hoary chestnut — If you refer to a statement, a story, or a joke as an old chestnut or a hoary chestnut, you mean that it has been repeated so often that it is no longer interesting.
  • personal accident insurance — accident which covers personal accidents
  • polymorphic lambda-calculus — (language, types)   (Or "second order typed lambda-calculus", "System F", "Lambda-2"). An extension of typed lambda-calculus allowing functions which take types as parameters. E.g. the polymorphic function "twice" may be written: twice = /\ t . \ (f :: t -> t) . \ (x :: t) . f (f x) (where "/\" is an upper case Greek lambda and "(v :: T)" is usually written as v with subscript T). The parameter t will be bound to the type to which twice is applied, e.g.: twice Int takes and returns a function of type Int -> Int. (Actual type arguments are often written in square brackets [ ]). Function twice itself has a higher type: twice :: Delta t . (t -> t) -> (t -> t) (where Delta is an upper case Greek delta). Thus /\ introduces an object which is a function of a type and Delta introduces a type which is a function of a type. Polymorphic lambda-calculus was invented by Jean-Yves Girard in 1971 and independently by John C. Reynolds in 1974.
  • post-viral fatigue syndrome — Post-viral fatigue syndrome is a long-lasting illness that is thought to be caused by a virus. Its symptoms include feeling tired all the time and muscle pain.
  • pour oil on troubled waters — any of a large class of substances typically unctuous, viscous, combustible, liquid at ordinary temperatures, and soluble in ether or alcohol but not in water: used for anointing, perfuming, lubricating, illuminating, heating, etc.
  • product liability insurance — Product liability insurance is insurance for a producer or supplier of goods against injury to third parties or loss of or damage to their property that is caused by a fault in the goods.
  • public broadcasting service — a network of independent, noncommercial television stations that operate with public and government funding instead of with revenues from advertising. Abbreviation: PBS.
  • public service broadcasting — publicly-funded broadcasting
  • public works administration — the U.S. federal agency (1933–44) that instituted and administered projects for the construction of public works. Abbreviation: PWA, P.W.A.
  • pull the rug out from under — to betray, expose, or leave defenceless
  • rough endoplasmic reticulum — a network of tubular membranes within the cytoplasm of the cell, occurring either with a smooth surface (smooth endoplasmic reticulum) or studded with ribosomes (rough endoplasmic reticulum) involved in the transport of materials.

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