0%

13-letter words containing c, n, i, d, u

  • demi-culverin — a culverin having a bore of about 4½ inches (11 cm) and firing a shot of about 10 pounds (5 kg).
  • denticulation — a denticulate structure
  • dentosurgical — relating to or used in both dentistry and surgery
  • denuclearized — Simple past tense and past participle of denuclearize.
  • denunciations — Plural form of denunciation.
  • destructional — of or pertaining to destruction
  • difficultness — The state or quality of being difficult.
  • discontentful — exhibiting a lack of contentment
  • discontiguity — the quality of being discontiguous
  • discontiguous — disconnected or without contact
  • discontinuing — Present participle of discontinue.
  • discontinuity — lack of continuity; irregularity: The plot of the book was marred by discontinuity.
  • discontinuous — not continuous; broken; interrupted; intermittent: a discontinuous chain of mountains; a discontinuous argument.
  • discounselled — lacking support or counsel
  • discount card — a card that entitles the holder to buy goods from a seller at a discount
  • discount rate — the rate of interest charged in discounting commercial paper.
  • disencumbered — Simple past tense and past participle of disencumber.
  • disfunctional — dysfunction.
  • disjunctively — In a disjunctive manner.
  • dispurveyance — the lack of provisions
  • dna computing — (architecture)   The use of DNA molecules to encode computational problems. Standard operations of molecular biology can then be used to solve some NP-hard search problems in parallel using a very large number of molecules. The exponential scaling of NP-hard problems still remains, so this method will require a huge amount of DNA to solve large problems.
  • documentalist — a specialist in documentation; a person working strictly with information and record-keeping.
  • documentarian — Movies, Television. a filmmaker, producer, etc., who specializes in documentaries.
  • documentaries — Plural form of documentary.
  • documentarily — Also, documental [dok-yuh-men-tl] /ˌdɒk yəˈmɛn tl/ (Show IPA). pertaining to, consisting of, or derived from documents: a documentary history of France.
  • documentarist — Movies, Television. a filmmaker, producer, etc., who specializes in documentaries.
  • documentarize — to put in the form of a documentary
  • documentation — the use of documentary evidence.
  • documentative — Of or pertaining to documents or documentation.
  • double nickel — the national speed limit of 55 miles per hour as established in 1974 on U.S. highways.
  • double-acting — (of a reciprocating engine, pump, etc.) having pistons accomplishing work in both directions, fluid being admitted alternately to opposite ends of the cylinders. Compare single-acting.
  • double-action — (of a firearm) requiring only one pull of the trigger to cock and fire it.
  • double-nickel — the national speed limit of 55 miles per hour as established in 1974 on U.S. highways.
  • dry scrubbing — Dry scrubbing is the removal of solid particles from a gas onto a liquid surface, but with a solid discharge.
  • dual alliance — the alliance between France and Russia (1890), strengthened by a military convention (1892–93) and lasting until the Bolshevik Revolution in 1917.
  • duc d'enghienDuc [dyk] /dük/ (Show IPA), (Louis Antoine Henry de Bourbon-Condé) 1772–1804, French prince: executed by Napoleon I.
  • duck shooting — duck hunting with a gun
  • ducking stool — a former instrument of punishment consisting of a chair in which an offender was tied to be plunged into water.
  • due diligence — the degree of care that is to be reasonably expected or that is legally required, esp. of persons giving professional advice
  • due-diligence — reasonable care and caution exercised by a person who is buying, selling, giving professional advice, etc., especially as required by law to protect against incurring liability: The court said there was due diligence on the part of the plaintiff.
  • dutch auction — a method of auction consisting in the offer of a property at a price above the actual value and then at gradually reduced prices until a buyer is found.
  • dysfunctional — not performing normally, as an organ or structure of the body; malfunctioning.
  • dzibilchaltun — a large, ancient Mayan ceremonial and commercial center near Mérida, Mexico, founded perhaps as early as 3000 b.c. and in continuous use until the 16th century.
  • echo sounding — the determining of depth of water by means of a device (echo sounder) that measures the time required for a sound wave to be reflected from the bottom: a similar process (echo ranging) is used to measure the distance to an underwater object
  • educationally — pertaining to education.
  • educationists — Plural form of educationist.
  • eta reduction — eta conversion
  • eudaemonistic — Of or pertaining to eudaemonism.
  • 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
  • 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.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?