0%

22-letter words containing c, o, m, p, l, a

  • accommodation platform — a platform or semisubmersible rig specially built or adapted to act as living accommodation for offshore personnel in the oil industry
  • armed response vehicle — (in Britain) a police vehicle carrying armed officers who are trained to respond to incidents involving firearms
  • astronomical telescope — any telescope designed and mounted for use in astronomy. Such telescopes usually form inverted images
  • backward compatibility — (jargon)   Able to share data or commands with older versions of itself, or sometimes other older systems, particularly systems it intends to supplant. Sometimes backward compatibility is limited to being able to read old data but does not extend to being able to write data in a format that can be read by old versions. For example, WordPerfect 6.0 can read WordPerfect 5.1 files, so it is backward compatible. It can be said that Perl is backward compatible with awk, because Perl was (among other things) intended to replace awk, and can, with a converter, run awk programs. See also: backward combatability. Compare: forward compatible.
  • block diagram compiler — (simulation, language)   (BDL) A block diagram simulation tool, with associated language.
  • bug-for-bug compatible — Same as bug-compatible, with the additional implication that much tedious effort went into ensuring that each (known) bug was replicated.
  • 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
  • categorical imperative — (in the ethics of Kant) the unconditional moral principle that one's behaviour should accord with universalizable maxims which respect persons as ends in themselves; the obligation to do one's duty for its own sake and not in pursuit of further ends
  • chemical sympathectomy — the chemical destruction of one or more parts of the sympathetic nervous system
  • chemical-sympathectomy — sympathectomy (def 2).
  • combinatorial topology — the branch of topology that deals with the properties of geometric figures by considering the figures as being composed of elementary geometric figures, as points or lines.
  • comma separated values — (file format)   (CSV) A file format used as a portable representation of a database. Each line is one entry or record and the fields in a record are separated by commas. Commas may be followed by arbitrary space and/or tab characters which are ignored. If field includes a comma, the whole field must be surrounded with double quotes.
  • common snapping turtle — a large aggressive North American river turtle, Chelydra serpentina, having powerful hooked jaws and a rough shell
  • comparative literature — the comparative study of various national literatures, stressing their influence one upon another, their use of similar forms, their treatment of similar themes, etc.
  • comparative musicology — ethnomusicology.
  • comparative psychology — the study of the similarities and differences in the behaviour of different species
  • complementary medicine — the treatment, alleviation, or prevention of disease by such techniques as osteopathy, homeopathy, aromatherapy, and acupuncture, allied with attention to such factors as diet and emotional stability, which can affect a person's wellbeing
  • complete metamorphosis — physical changes in the development of certain insects that include egg, larva, pupa, and adult stages, as in beetles, moths, or bees
  • complete quadrilateral — a polygon consisting of four lines and their six points of intersection
  • 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
  • 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
  • contract of employment — a written agreement between an employer and an employee, that, taken together with the rights of each under statute and common law, determines the employment relations between them
  • corporate manslaughter — the death of someone caused by an act of corporate negligence
  • cosmological principle — the theory that the universe is uniform, homogenous, and isotropic, and therefore appears the same from any position
  • decompartmentalization — the act of decompartmentalizing
  • directional microphone — a microphone that has a greater sensitivity to sounds coming from a particular area in front of it: used to eliminate unwanted sounds.
  • disciplinary committee — a committee charged with examining alleged breaches of discipline within an organization, profession, etc and adjudicating on them
  • electrothermal printer — a printer that produces characters by burning the image on specially coated paper
  • employers' association — a body of employers, usually from the same sector of the economy, associated to further the interests of member companies by conducting negotiations with trade unions, providing advice, making representations to other bodies, etc
  • experimental condition — one of the distinct states of affairs or values of the independent variable for which the dependent variable is measured in order to carry out statistical tests or calculations
  • fallacy of composition — the fallacy of inferring that a property of parts or members of a whole is also a property of the whole (opposed to fallacy of division).
  • 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.
  • horn-rimmed spectacles — spectacles with rims made of material resembling horn
  • hypothetical syllogism — a hypothetical syllogism has two uses. In propositional logic it expresses one of the rules of inference, while in the history of logic, it is a short-hand for the theory of consequence
  • ice-cream parlor chair — a side chair made of heavy wire with a round wooden seat, especially for use at a table.
  • incremental repetition — repetition, with variation, of a refrain or other part of a poem, especially a ballad.
  • intermetallic compound — a compound of two or more metals.
  • last call optimisation — (programming)   (Or "tail call optimisation") Discarding the immediate calling context (call stack frame) when the last action of a function or procedure, A, is to call another function or procedure, B. B will then return directly to A's caller, or possibly further up the call stack if the optimisation has been applied to several consecutive calls. Last call optimisation allows arbitrarily deep nesting of procedure calls without consuming memory to store useless environments. This is particularly useful in the special case of tail recursion optimisation, where a procedure's last action is to call itself (possibly indirectly).
  • left-handed compliment — an ambiguous compliment
  • liberal democrat party — The Liberal Democrat Party is the third largest political party in Britain and the main centre party. It believes in improving the constitution and the voting system and in providing good welfare services.
  • magnetic dipole moment — a measure of the magnetic strength of a magnet or current-carrying coil, expressed as the torque per unit magnetic-flux density produced when the magnet or coil is set with its axis perpendicular to the magnetic field
  • magnetic pole strength — Electricity. a measure of the force exerted by one face of a magnet on a face of another magnet when both magnets are represented by equal and opposite poles. Symbol: m.
  • make one's flesh creep — to move slowly with the body close to the ground, as a reptile or an insect, or a person on hands and knees.
  • miscellaneous expenses — small expenses of various kinds
  • modified american plan — (in hotels) a system of paying a single fixed rate that covers room, breakfast, and one other meal, usually dinner. Abbreviation: MAP.
  • mozilla public license — Open source license
  • mpeg-2 aac low profile — (compression, standard, algorithm, file format)   A successor of MP3 allowing transparent coding at data rates of 75-80% of that of MP3. It is very different from MP3, only used MDCT, no subband coding.

On this page, we collect all 22-letter words with C-O-M-P-L-A. 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-M-P-L-A 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?