0%

22-letter words containing c, o, n, u, t, m

  • a name to conjure with — If you say that the name of a particular person or organization is a name to conjure with, you mean that that person or organization is very important and influential in the field you are discussing.
  • autokinetic phenomenon — the apparent movement of a fixed point of light when observed in a darkened room. The effect is produced by small eye movements for which the brain is unable to compensate, having no other reference points
  • automatic gain control — control of a radio receiver in which the gain varies inversely with the magnitude of the input, thus maintaining the output at an approximately constant level
  • automatic send receive — (hardware)   (ASR) Part of a designation for a hard-copy terminal, manufactured by Teletype Corporation, which could be commanded remotely to send the contents of its paper tape reader. The ASR-33 was the most common minicomputer terminal in the early 1970s.
  • automatic transmission — A car that is fitted with automatic transmission has a gear system in which the gears change automatically.
  • behaviour modification — the use of techniques to change someone's behaviour by reinforcing desired behaviour
  • being from outer space — a monster; an imaginary creature
  • bereavement counsellor — a person giving advice to bereaved people to help them cope with their grief
  • bernoulli's lemniscate — Analytic Geometry. lemniscate.
  • cargo cult programming — (programming, humour)   A style of (incompetent) programming dominated by ritual inclusion of code or program structures that serve no real purpose. A cargo cult programmer will usually explain the extra code as a way of working around some bug encountered in the past, but usually neither the bug nor the reason the code apparently avoided the bug was ever fully understood (compare shotgun debugging, voodoo programming). The term "cargo cult" is a reference to aboriginal religions that grew up in the South Pacific after World War II. The practices of these cults centre on building elaborate mockups of aeroplanes and military style landing strips in the hope of bringing the return of the god-like aeroplanes that brought such marvelous cargo during the war. Hackish usage probably derives from Richard Feynman's characterisation of certain practices as "cargo cult science" in his book "Surely You're Joking, Mr. Feynman" (W. W. Norton & Co, New York 1985, ISBN 0-393-01921-7).
  • carpal tunnel syndrome — a condition characterized by pain and tingling in the fingers, caused by pressure on a nerve as it passes under the ligament situated across the front of the wrist
  • catoctin mountain park — a federal park in N central Maryland: site of Camp David. 9 sq. mi. (23 sq. km).
  • central nervous system — Your central nervous system is the part of your nervous system that consists of the brain and spinal cord.
  • chlorotrifluoromethane — a colorless gas, CClF 3 , used chiefly as a refrigerant, in the hardening of metals, and in pharmaceutical processing.
  • common situs picketing — the picketing of an entire construction project by a union having a dispute with only one subcontractor working at the site.
  • common snapping turtle — a large aggressive North American river turtle, Chelydra serpentina, having powerful hooked jaws and a rough shell
  • common-situs picketing — the picketing of an entire construction site by a union striking against a particular contractor or subcontractor working on only one section
  • communication channels — the ways in which people communicate
  • communication disorder — any of a number of disorders, as autism or deafness, that partially or totally prevent verbal or written expression or comprehension.
  • communications network — a network that provides information
  • component architecture — (programming)   A notion in object-oriented programming where "components" of a program are completely generic. Instead of having a specialised set of methods and fields they have generic methods through which the component can advertise the functionality it supports to the system into which it is loaded. This enables completely dynamic loading of objects. JavaBeans is an example of a component architecture. See also design pattern.
  • compound annual return — the total return available from an investment, deposit, etc, when the interest earned is used to augment the capital
  • compulsory liquidation — the liquidation of a business in order to settle its debts
  • compuserve corporation — (company)   The parent organisation of CompuServe Information Service, CompuServe Network Services and CompuServe Remote Computing Services. CompuServe was owned by H.R. Block but is now (1999) owned by America On-Line.
  • computational geometry — (mathematics)   The study of algorithms for combinatorial, topological, and metric problems concerning sets of points, typically in Euclidean space. Representative areas of research include geometric search, convexity, proximity, intersection, and linear programming.
  • computational learning — grammatical inference
  • concurrent massey hope — (language, functional programming)   An extension of Massey Hope, by Peter Burgess, Robert Pointon, and Nigel Perry <[email protected]> of Massey University, NZ, that provides multithreading and typed inter-thread communication. It uses C for intermediate code rather than assembly language.
  • connecticut compromise — a compromise adopted at the Constitutional Convention, providing the states with equal representation in the Senate and proportional representation in the House of Representatives.
  • constitutional monarch — the sovereign in a constitutional monarchy
  • constructive criticism — helping to improve; promoting further development or advancement (opposed to destructive): constructive criticism.
  • constructive dismissal — If an employee claims constructive dismissal, they begin a legal action against their employer in which they claim that they were forced to leave their job because of the behaviour of their employer.
  • consummatory behaviour — any behaviour that leads directly to the satisfaction of an innate drive, e.g. eating or drinking
  • context-sensitive menu — (operating system)   A menu which appears in response to a user action (typically a mouse click) and whose contents are determined by which application window was clicked or has the input focus. Most GUIs use a secondary mouse button (right or middle) to call up a context-sensitive menu as the primary mouse button is normally used to interact with objects which are already visible. The context-sensitive menu often contains functions that are also available in a menu bar but the context-sensitive menu provides quick access to a subset of functions that are particularly relevant to the window area clicked on. The RISC OS WIMP uses only context-sensitive menus (always invoked using the middle mouse button). This saves screen space and reduces mouse movement compared to a menu bar.
  • corporate manslaughter — the death of someone caused by an act of corporate negligence
  • countryside commission — (formerly, in Britain) a body which co-ordinated government activity in England and Wales in relation to the countryside
  • curriculum coordinator — a member of a teaching staff with a largely administrative function whose job is to ensure that a curriculum is effectively taught
  • cut one's wisdom teeth — to arrive at the age of discretion
  • cut someone some slack — to be less demanding of someone; ease up on someone
  • earth inductor compass — a compass actuated by induction from the earth's magnetic field.
  • east african community — an association established in 1967 by Kenya, Uganda, and Tanzania to promote closer economic and social ties between member states: dissolved in 1977, but reformed in 1999, and joined in 2007 by Burundi and Rwanda
  • friar minor conventual — a friar belonging to a branch of the Franciscan order that separated from the Observants in the 15th century, and that observes a modification of the rule of St. Francis. Also called Conventual. Compare Friar Minor, capuchin (def 4).
  • functional programming — (programming)   (FP) A program in a functional language consists of a set of (possibly recursive) function definitions and an expression whose value is output as the program's result. Functional languages are one kind of declarative language. They are mostly based on the typed lambda-calculus with constants. There are no side-effects to expression evaluation so an expression, e.g. a function applied to certain arguments, will always evaluate to the same value (if its evaluation terminates). Furthermore, an expression can always be replaced by its value without changing the overall result (referential transparency). The order of evaluation of subexpressions is determined by the language's evaluation strategy. In a strict (call-by-value) language this will specify that arguments are evaluated before applying a function whereas in a non-strict (call-by-name) language arguments are passed unevaluated. Programs written in a functional language are generally compact and elegant, but have tended, until recently, to run slowly and require a lot of memory. Examples of purely functional languages are Clean, FP, Haskell, Hope, Joy, LML, Miranda, and SML. Many other languages such as Lisp have a subset which is purely functional but also contain non-functional constructs. See also lazy evaluation, reduction.
  • genitourinary medicine — the branch of medical science concerned with the study and treatment of diseases of the genital and urinary organs, esp sexually transmitted diseases
  • geometric distribution — the distribution of the number, x, of independent trials required to obtain a first success: where the probability in each is p, the probability that x = r is p(1-p)r–1, where r = 1, 2, 3, …, with mean 1/p
  • hybrid multiprocessing — (parallel)   (HMP) The kind of multitasking which OS/2 supports. HMP provides some elements of symmetric multiprocessing, using add-on IBM software called MP/2. OS/2 SMP was planned for release in late 1993.
  • intermetallic compound — a compound of two or more metals.
  • isthmus of tehuantepec — the narrowest part of S Mexico, with the Bay of Campeche on the north coast and the Gulf of Tehuantepec (an inlet of the Pacific) on the south coast
  • java community process — (project)   (JCP) An organization controlled by Sun Microsystems to further the growth of the Java language and runtime. The JCP produces standards called Java Standard Requests, which are "requests" in the same sense as RFCs.
  • linear induction motor — an electric motor in which a movable part moves in a straight line, with power being supplied by a varying magnetic field set up by a fixed part of the system, as a metal rail on the ground.
  • lowest common multiple — the smallest number that is a common multiple of a given set of numbers.

On this page, we collect all 22-letter words with C-O-N-U-T-M. It’s easy to find right word with a certain length. It is the easiest way to find 22-letter word that contains in C-O-N-U-T-M to use in Scrabble or Crossword puzzles

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?