0%

18-letter words containing m, a, c, r, o, l

  • complementary gene — one of a pair of genes, each from different loci, that together are required for the expression of a certain characteristic
  • complexity measure — (algorithm)   A quantity describing the complexity of a computation.
  • compliance officer — a specialist, usually a lawyer, employed by a financial group operating in a variety of fields and for multiple clients to ensure that no conflict of interest arises and that all obligations and regulations are complied with
  • conceptual realism — the doctrine that universals have real and independent existence.
  • considered harmful — (programming, humour)   A type of phrase based on the title of Edsger W. Dijkstra's famous note in the March 1968 Communications of the ACM, "Goto Statement Considered Harmful", which fired the first salvo in the structured programming wars. Amusingly, the ACM considered the resulting acrimony sufficiently harmful that it will (by policy) no longer print articles taking so assertive a position against a coding practice. In the ensuing decades, a large number of both serious papers and parodies bore titles of the form "X considered Y". The structured-programming wars eventually blew over with the realisation that both sides were wrong, but use of such titles has remained as a persistent minor in-joke.
  • consolato del mare — a code of maritime law compiled in the Middle Ages: it drew upon ancient law and has influenced modern law.
  • container terminal — a transport terminal that handles containerized cargo
  • continental margin — the offshore zone, consisting of the continental shelf, slope, and rise, that separates the dry-land portion of a continent from the deep ocean floor.
  • cool as a cucumber — very calm; self-possessed
  • counterculturalism — The counterculture movement or lifestyle.
  • criminal profiling — the analysis of a person's psychological and behavioural characteristics, so as to assess whether they are likely to have committed a crime under investigation
  • crystal microphone — a microphone that uses a piezoelectric crystal to convert sound energy into electrical energy
  • cumulative scoring — a method of scoring in which the score of a partnership is taken as the sum of their scores on all hands played.
  • customer relations — Customer relations are the relationships that a business has with its customers and the way in which it treats them.
  • decompartmentalize — to remove excessive compartmentalization from (an organization)
  • diaminofluorescein — (organic compound) A fluorescein into which two amino groups have been substituted.
  • 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
  • diplomatic service — diplomatic corps
  • dominican republic — a republic in the West Indies, occupying the E part of the island of Hispaniola. 19,129 sq. mi. (49,545 sq. km). Capital: Santo Domingo.
  • domremy-la-pucelle — a village in Lorraine, NE France, SW of Nancy: birthplace of Joan of Arc.
  • 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.
  • ecma international — (body)   (Formerly European Computer Manufacturers Association) An industry association founded in 1961 and dedicated to the standardisation of information and communication systems. ECMA edits standards and technical reports. All ECMA publications are available free of charge. The best known ECMA standard is ECMA 262, defining the scripting language ECMAScript.
  • electrocardiograms — Plural form of electrocardiogram.
  • electrocorticogram — a record of brain waves obtained by placing electrodes directly on the surface of the exposed cerebral cortex
  • electrodynamometer — An instrument that measures electric current by indicating the strength of repulsion or attraction between the magnetic fields of two sets of coils, one fixed and one movable.
  • electronic mailbox — a device used to store electronic mail
  • electroretinograms — Plural form of electroretinogram.
  • emotional literacy — the ability to deal with one's emotions and recognize their causes
  • 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).
  • farm the long acre — to graze cows on the verge of a road
  • 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.
  • formal equivalence — the relation that holds between two open sentences when their universal closures are materially equivalent
  • forward compatible — forward compatibility
  • functional program — (language)   A program employing the functional programming approach or written in a functional language.
  • genetic algorithms — genetic algorithm
  • gentleman-commoner — (formerly) a member of a class of commoners enjoying special privileges at Oxford University.
  • geometrical optics — the branch of optics dealing with light as rays, especially in the study of the effects of lenses and mirrors on light beams and of their combination in optical instruments.
  • golden bantam corn — a horticultural variety of sweet corn having yellow kernels.
  • heimlich manoeuvre — a technique in first aid to dislodge a foreign body in a person's windpipe by applying sudden upward pressure on the upper abdomen
  • histomorphological — histology.
  • hyper-metaphorical — a figure of speech in which a term or phrase is applied to something to which it is not literally applicable in order to suggest a resemblance, as in “A mighty fortress is our God.”. Compare mixed metaphor, simile (def 1).
  • hypercholesteremia — Alternative spelling of hypercholesteraemia.
  • immunopharmacology — the branch of pharmacology concerned with the immune system
  • in terrorem clause — a clause in a will stating that a beneficiary who contests the will shall lose his or her legacy.
  • incommensurability — not commensurable; having no common basis, measure, or standard of comparison.
  • instruction manual — how-to, usage guide
  • involuntary muscle — muscle: contracts involuntarily
  • isothermal process — a process that takes place without change in temperature.
  • lactogenic hormone — prolactin.
  • 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?