0%

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

  • documentative — Of or pertaining to documents or documentation.
  • dolichosaurus — any of various extinct Cretaceous aquatic reptiles that had long necks and bodies and well-developed limbs
  • domical vault — cloistered vault.
  • double nickel — the national speed limit of 55 miles per hour as established in 1974 on U.S. highways.
  • double wicket — cricket in which two wickets are used, being the usual form of the game.
  • 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.
  • dramaturgical — the craft or the techniques of dramatic composition.
  • 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.
  • dualistically — of, relating to, or of the nature of dualism.
  • 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.
  • duff's device — The most dramatic use yet seen of fall through in C, invented by Tom Duff when he was at Lucasfilm. Trying to bum all the instructions he could out of an inner loop that copied data serially onto an output port, he decided to unroll it. He then realised that the unrolled version could be implemented by *interlacing* the structures of a switch and a loop: register n = (count + 7) / 8; /* count > 0 assumed */ switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } Shocking though it appears to all who encounter it for the first time, the device is actually perfectly valid, legal C. C's default fall through in case statements has long been its most controversial single feature; Duff observed that "This code forms some sort of argument in that debate, but I'm not sure whether it's for or against."
  • duplicability — The quality of being duplicable.
  • duplicitously — In a duplicitous, two-faced manner.
  • 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.
  • dutch disease — the deindustrialization of an economy as a result of the discovery of a natural resource, as that which occurred in Holland with the exploitation of North Sea gas, which raised the value of the Dutch currency, making its exports uncompetitive and causing its industry to decline
  • 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
  • excise duties — the tax payable on certain goods, such as alcohol, cigarettes, fuel
  • excludability — The ability to be excluded.
  • extrajudicial — (of a sentence) not legally authorized.
  • fidus achates — a faithful friend or companion
  • fluid-extract — a liquid preparation, containing alcohol as a solvent or as a preservative, that contains in each cubic centimeter the medicinal activity of one gram of the crude drug in powdered form.
  • 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.
  • food security — an economic and social condition of ready access by all members of a household to nutritionally adequate and safe food: a household with high food security.
  • fuel-injected — (of an engine) having fuel injection.
  • fulminic acid — an unstable acid, CNOH, isomeric with cyanic acid, and known only in the form of its salts.
  • function word — a word, as a preposition, article, auxiliary, or pronoun, that chiefly expresses grammatical relationships, has little semantic content of its own, and belongs to a small, closed class of words whose membership is relatively fixed (distinguished from content word).
  • glucaric acid — saccharic acid.
  • gluconic acid — a colorless, water-soluble acid, C 6 H 12 O 7 , obtained by the oxidation of glucose, used commercially in a 50-percent solution for cleaning metals.
  • glucuronidase — an enzyme that catalyzes glucuronide hydrolysis
  • glutamic acid — an amino acid, HOOCCH 2 CH 2 CH(NH 2)COOH, obtained by hydrolysis from wheat gluten and sugar-beet residues, used commercially chiefly in the form of its sodium salt to intensify the flavor of meat or other food. Symbol: E. Abbreviation: Glu;
  • good gracious — Some people say good gracious or goodness gracious in order to express surprise or annoyance.
  • ground sluice — a trench, cut through a placer or through bedrock, through which a stream is diverted in order to dislodge and wash the gravel.
  • guanylic acid — GMP.
  • gynodioecious — having female flowers on one plant and hermaphrodite flowers on another plant of the same species.
  • high-coloured — (of the complexion) deep red or purplish; florid
  • hippuric acid — a crystalline solid excreted in the urine of mammals. Formula: C9H9NO3
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?