0%

13-letter words containing c, o, d, l

  • double-clutch — (of a bird) to produce a second clutch of eggs after the first has been removed, usually for hatching in an incubator.
  • double-decker — something with two decks, tiers, or the like, as two beds one above the other, a ship with two decks above the water line, or a bus with two decks.
  • double-nickel — the national speed limit of 55 miles per hour as established in 1974 on U.S. highways.
  • douglas scale — an international scale of sea disturbance and swell ranging from 0 to 9 with one figure for disturbance and one for swell
  • downhill race — a competitive event in which skiers are timed in a downhill run
  • dual controls — If a vehicle used by a driving instructor has dual controls, it has pedals on the passenger's side as well as on the driver's side to allow the driving instructor to brake should the learner try to move off when it is dangerous to do so
  • dual monarchy — the kingdom of Austria-Hungary 1867–1918.
  • ducking stool — a former instrument of punishment consisting of a chair in which an offender was tied to be plunged into water.
  • duplicitously — In a duplicitous, two-faced manner.
  • dyothelitical — relating to dyotheletism
  • dysfunctional — not performing normally, as an organ or structure of the body; malfunctioning.
  • educationally — pertaining to education.
  • electioneered — Simple past tense and past participle of electioneer.
  • electrodermal — Of or relating to measurement of the electrical conductivity of the skin, especially as an indicator of someone’s emotional responses.
  • electroformed — Produced, or modified by electroforming.
  • electroplated — Simple past tense and past participle of electroplate.
  • encyclopaedia — (chiefly, UK, Australia) alternative spelling of encyclopedia.
  • encyclopaedic — Alternative spelling of encyclopedic.
  • encyclopedian — including a wide circle of learning
  • encyclopedias — Plural form of encyclopedia.
  • encyclopedism — Comprehensive learning or knowledge.
  • encyclopedist — A person who writes, edits, or contributes to an encyclopedia.
  • endobronchial — (anatomy) Pertaining to the lining of the bronchi.
  • endocommensal — a commensal living within the body of the host organism
  • endocrinology — The branch of physiology and medicine concerned with endocrine glands and hormones.
  • endolymphatic — (anatomy) Pertaining to, or containing, endolymph.
  • endonucleases — Plural form of endonuclease.
  • epicondylitis — A painful inflammation of tendons surrounding an epicondyle.
  • epidemiologic — Of or pertaining to epidemiology.
  • epitrochoidal — Being or relating to an epitrochoid.
  • eudicotyledon — any plant belonging to one of the two major groups of flowering plants, comprising over 60 per cent of all plants, normally having net-veined leaves and two cotyledons in the seed
  • factionalized — Simple past tense and past participle of factionalize.
  • faculty board — the governing body of a faculty
  • family doctor — a general practitioner.
  • federal court — a court of a federal government, especially one established under the Constitution of the United States.
  • feedback loop — the path by which some of the output of a circuit, system, or device is returned to the input.
  • feeder school — a junior school whose pupils go to a specific secondary school
  • female condom — a type of condom used by women and inserted into the vagina
  • fictionalised — Simple past tense and past participle of fictionalise.
  • fictionalized — to make into fiction; give a somewhat imaginative or fictional version of: to fictionalize a biography.
  • field officer — an officer holding a field grade.
  • film recorder — a photographic device for producing a sound strip on a motion-picture film.
  • firewall code — 1. The code you put in a system (say, a telephone switch) to make sure that the users can't do any damage. Since users always want to be able to do everything but never want to suffer for any mistakes, the construction of a firewall is a question not only of defensive coding but also of interface presentation, so that users don't even get curious about those corners of a system where they can burn themselves. 2. Any sanity check inserted to catch a can't happen error. Wise programmers often change code to fix a bug twice: once to fix the bug, and once to insert a firewall which would have arrested the bug before it did quite as much damage.
  • flesh-colored — Something that is flesh-colored is yellowish pink in color.
  • floating dock — a submersible, floating structure used as a dry dock, having a floor that is submerged, slipped under a floating vessel, and then raised so as to raise the vessel entirely out of the water.
  • flood control — the act or technique of controlling river flow with dams, dikes, artificial channels, etc., so as to minimize the occurrence of floods.
  • flying doctor — a doctor listed with local authorities as willing to be flown to remote areas to give emergency medical care.
  • fold function — (programming)   In functional programming, fold or "reduce" is a kind of higher-order function that takes as arguments a function, an initial "accumulator" value and a data structure (often a list). In Haskell, the two flavours of fold for lists, called foldl and foldr are defined like this: foldl :: (a -> b -> a) -> a -> [b] -> a foldl f z [] = z foldl f z (x:xs) = foldl f (f z x) xs foldr :: (a -> b -> b) -> b -> [a] -> b foldr f z [] = z foldr f z (x:xs) = f x (foldr f z xs) In both cases, if the input list is empty, the result is the value of the accumulator, z. If not, foldl takes the head of the list, x, and returns the result of recursing on the tail of the list using (f z x) as the new z. foldr returns (f x q) where q is the result of recursing on the tail. The "l" and "r" in the names refer to the associativity of the application of f. Thus if f = (+) (the binary plus operator used as a function of two arguments), we have: foldl (+) 0 [1, 2, 3] = (((0 + 1) + 2) + 3 (applying + left associatively) and foldr (+) 0 [1, 2, 3] = 0 + (1 + (2 + 3)) (applying + right associatively). For +, this makes no difference but for an non-commutative operator it would.
  • folding chair — a chair that can be collapsed flat for easy storage or transport.
  • foldoc source — The source text of FOLDOC is a single plain text file. FOLDOC is also available on paper from your local printer but, at 700,000+ words, that would be about 2000 pages.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?