0%

18-letter words containing m, r, a, d, i, t

  • diamondback turtle — any edible North American terrapin of the genus Malaclemys, esp M. terrapin, occurring in brackish and tidal waters and having diamond-shaped markings on the shell: family Emydidae
  • diastereoisomerism — (chemistry) Any form of stereoisomerism other than enantiomerism.
  • diatomaceous earth — an unconsolidated form of diatomite
  • dietary supplement — a substance taken in addition to what you eat in order to promote health
  • digital multimeter — (electronics)   (DMM) A peice of test equipment used for measuring voltage, current, resistance, and possibly other electircal quantities and displaying the value in number form.
  • dimethyltryptamine — a hallucinogenic drug, C 12 H 16 N 2 , with an action of short duration. Abbreviation: DMT.
  • diplomatic service — diplomatic corps
  • direct examination — the first interrogation of a witness by the side that has called that witness.
  • disenfranchisement — to disfranchise.
  • division algorithm — the theorem that an integer can be written as the sum of the product of two integers, one a given positive integer, added to a positive integer smaller than the given positive integer. Compare Euclidean algorithm.
  • donor insemination — a process which involves using sperm which has been voluntarily given for use in the insemination of another person
  • dot matrix printer — (hardware, printer)   A kind of printer with a vertical column of up to 48 small closely packed needles or "pins" each of which can be individually forced forward to press an ink ribbon against the paper. The print head is repeatedly scanned across the page and different combinations of needles activated at each point. Dot matrix printers are noisy compared to non-impact printers.
  • dot-matrix printer — device: prints using matrix dots
  • dramatic monologue — a poetic form in which a single character, addressing a silent auditor at a critical moment, reveals himself or herself and the dramatic situation.
  • economic indicator — business statistic
  • electrocardiograms — Plural form of electrocardiogram.
  • euclid's algorithm — (algorithm)   (Or "Euclidean Algorithm") An algorithm for finding the greatest common divisor (GCD) of two numbers. It relies on the identity gcd(a, b) = gcd(a-b, b) To find the GCD of two numbers by this algorithm, repeatedly replace the larger by subtracting the smaller from it until the two numbers are equal. E.g. 132, 168 -> 132, 36 -> 96, 36 -> 60, 36 -> 24, 36 -> 24, 12 -> 12, 12 so the GCD of 132 and 168 is 12. This algorithm requires only subtraction and comparison operations but can take a number of steps proportional to the difference between the initial numbers (e.g. gcd(1, 1001) will take 1000 steps).
  • farmer in the dell — a game, accompanied by a song with several verses, in which one person, designated as the farmer, occupies the center of a circle of persons and is joined in the circle by other players designated as wife, child, nurse, cat, rat, and cheese, these then leaving the circle in order except for the one designated as cheese, who is left standing alone in the circle at the end.
  • feldenkrais method — a system of gentle movements that promote flexibility, coordination, and self-awareness
  • fire and brimstone — When people talk about fire and brimstone, they are referring to hell and how they think people are punished there after death.
  • fire-and-brimstone — threatening punishment in the hereafter: a fire-and-brimstone sermon.
  • first and foremost — primarily
  • first class module — (programming)   A module that is a first class data object of the programming language, e.g. a record containing functions. In a functional language, it is standard to have first class programs, so program building blocks can have the same status.
  • fixed-term tenancy — a tenancy arrangement for a particular and fixed period
  • flat-bottomed rail — a rail having a cross section like an inverted T, with the top extremity enlarged slightly to form the head
  • forward compatible — forward compatibility
  • foundation garment — an undergarment, as a girdle or corset, worn by women to support or give shape to the contours of the body.
  • fulminating powder — powder that explodes by percussion.
  • fuming nitric acid — a colorless, yellowish, or brownish fuming corrosive liquid, usually prepared from nitric acid by the addition of excess nitrogen dioxide: used in organic synthesis for nitration, and as an oxidizer in liquid propellants for rockets.
  • gamma distribution — a continuous two-parameter distribution from which the chi-square and exponential distributions are derived, written Gamma (α. β), where α and β are greater than zero, and defined in terms of the gamma function
  • good samaritan law — a law that exempts from legal liability persons, sometimes only physicians, who give reasonable aid to strangers in grave physical distress.
  • grammatical gender — gender based on arbitrary assignment, without regard to the referent of a noun, as in French le livre (masculine), “the book,” and German das Mädchen (neuter), “the girl.”.
  • hermaphrodite brig — a two-masted sailing vessel, square-rigged on the foremast and fore-and-aft-rigged on the mainmast.
  • honour moderations — (at Oxford University) the first public examination, in which candidates are placed into one of three classes of honours
  • hydroflumethiazide — A diuretic drug.
  • hydroxytryptamines — Plural form of hydroxytryptamine.
  • hyperaldosteronism — aldosteronism.
  • hypoparathyroidism — Diminished concentration of parathyroid hormone in the blood, which causes deficiencies of calcium and phosphorus compounds in the blood and results in muscular spasms.
  • in inverted commas — If you say in inverted commas after a word or phrase, you are indicating that it is inaccurate or unacceptable in some way, or that you are quoting someone else.
  • indiscriminateness — The state of being indiscriminate.
  • indiscriminatingly — In an indiscriminating manner.
  • industrial diamond — a small often synthetic diamond, valueless as a gemstone, used in cutting tools, abrasives, etc
  • information island — (jargon)   A body of information (i.e. electronic files) that needs to be shared but has no network connection.
  • informatory double — a double intended to inform one's partner that one has a strong hand and to urge a bid regardless of the strength of his or her hand.
  • infrared astronomy — the study of infrared radiation emitted by celestial objects.
  • instrument landing — an aircraft landing accomplished by use of gauges on the instrument panel and ground-based radio equipment, with limited reference to outside visual signals.
  • jose de san martin — José de [haw-se th e] /hɔˈsɛ ðɛ/ (Show IPA), 1778–1850, South American general and statesman, born in Argentina: leader in winning independence for Argentina, Peru, and Chile; protector of Peru 1821–22.
  • justice department — the United States federal department for enforcing federal laws
  • kitchen-sink drama — a type of drama of the 1950s depicting the sordid aspects of domestic reality
  • lambda abstraction — A term in lambda-calculus denoting a function. A lambda abstraction begins with a lower-case lambda (represented as "\" in this document), followed by a variable name (the "bound variable"), a full stop and a lambda expression (the body). The body is taken to extend as far to the right as possible so, for example an expression, \ x . \ y . x+y is read as \ x . (\ y . x+y). A nested abstraction such as this is often abbreviated to: \ x y . x + y The lambda expression (\ v . E) denotes a function which takes an argument and returns the term E with all free occurrences of v replaced by the actual argument. Application is represented by juxtaposition so (\ x . x) 42 represents the identity function applied to the constant 42. A lambda abstraction in Lisp is written as the symbol lambda, a list of zero or more variable names and a list of zero or more terms, e.g. (lambda (x y) (plus x y)) Lambda expressions in Haskell are written as a backslash, "\", one or more patterns (e.g. variable names), "->" and an expression, e.g. \ x -> x.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?