0%

20-letter words containing c, i, s

  • discretionary income — money for luxuries
  • displacement current — the rate of change, at any point in space, of electric displacement with time.
  • displacement tonnage — the number of long tons of water displaced by a vessel, light or load displacement being specified.
  • disruptive discharge — the sudden, large increase in current through an insulating medium resulting from complete failure of the medium under electrostatic stress.
  • distress merchandise — goods sold below the prevailing price in order to raise cash quickly or to meet some other financial emergency.
  • distributed practice — learning with reasonably long intervals between separate occasions of learning
  • distribution channel — trade: retailer
  • distributive lattice — (theory)   A lattice for which the least upper bound (lub) and greatest lower bound (glb) operators distribute over one another so that a lub (b glb c) == (a lub c) glb (a lub b) and vice versa. ("lub" and "glb" are written in LateX as \sqcup and \sqcap).
  • district court judge — a judge presiding over a lower court
  • district high school — a school in a rural area that includes primary and post-primary classes
  • district of columbia — a federal area in the E United States, on the Potomac, coextensive with the federal capital, Washington. 69 sq. mi. (179 sq. km). Abbreviation: DC (for use with zip code), D.C.
  • diverticular disease — any disease of the colon involving the presence of diverticula
  • do someone a service — If you do someone a service, you do something that helps or benefits them.
  • docosahexaenoic acid — DHA.
  • doctor of philosophy — Also called doctorate. the highest degree awarded by a graduate school, usually to a person who has completed at least three years of graduate study and a dissertation approved by a board of professors.
  • domestic heating oil — a liquid petroleum product used to fuel residential building furnaces or boilers
  • double decomposition — a reaction whose result is the interchange of two parts of two substances to form two new substances, as AgNO 3 + NaCl → AgCl + NaNO 3 .
  • duck-billed dinosaur — hadrosaur.
  • duck-billed platypus — platypus.
  • ecclesiastical court — a church court in ecclesiastical matters, presided over by members of the clergy and usually having no compulsory jurisdiction.
  • economic determinism — the doctrine that all social, cultural, political, and intellectual forms are determined by or result from such economic factors as the quality of natural resources, productive capability, technological development, or the distribution of wealth.
  • economic rationalism — an economic policy based on the efficiency of market forces, characterized by minimal government intervention, tax cuts, privatization, and deregulation of labour markets
  • effective resistance — the resistance to an alternating current, expressed as the ratio of the power dissipated to the square of the effective current.
  • electoral boundaries — the way that a country or area is divided for the purposes of voting in an election
  • electrohydrodynamics — (physics) the study of the dynamics of electrically conducting fluid.
  • electromotive series — a series of the metals, together with hydrogen, ranged in the order of their electrode potentials
  • electronic signature — electronic proof of a person's identity
  • electrophysiological — Of or pertaining to electrophysiology.
  • employee association — an organization, other than a trade union, whose members comprise employees of a single employing organization. The aims of the association may be social, recreational, or professional
  • entry qualifications — the qualifications people wishing to enter an organization, university, etc, have to have
  • equilibrium constant — The equilibrium constant is the ratio between the amount of reactants and the amount of product for a particular chemical reaction, used to calculate chemical behavior.
  • erythema infectiosum — a mild infectious disease of childhood, caused by a virus, characterized by fever and a red rash spreading from the cheeks to the limbs and trunk
  • essential amino acid — an amino acid that cannot be synthesized in the body and is thus an essential component of the diet
  • essential complexity — (programming)   A measure of the "structuredness" of a program.
  • essential fatty acid — any fatty acid required by the body in manufacturing prostaglandins, found in such foods as oily fish and nuts
  • european social fund — one of the four Structural Funds of the European Union which aims to support employment and the economic and social well-being of EU member countries
  • exclusive or circuit — a computer logic circuit having two or more input wires and one output wire and giving a high-voltage output signal if a low-voltage signal is fed to one or more, but not all, of the input wires
  • exercise, left as an — Used to complete a proof in technical books when one doesn't mind a handwave, or to avoid one entirely. The complete phrase is: "The proof [or "the rest"] is left as an exercise for the reader." This comment *has* occasionally been attached to unsolved research problems by authors possessed of either an evil sense of humour or a vast faith in the capabilities of their audiences.
  • existentialistically — In an existentialist manner.
  • explicit parallelism — A feature of a programming language for a parallel processing system which allows or forces the programmer to annotate his program to indicate which parts should be executed as independent parallel tasks. This is obviously more work for the programmer than a system with implicit parallelism (where the system decides automatically which parts to run in parallel) but may allow higher performance.
  • feather in one's cap — one of the horny structures forming the principal covering of birds, consisting typically of a hard, tubular portion attached to the body and tapering into a thinner, stemlike portion bearing a series of slender, barbed processes that interlock to form a flat structure on each side.
  • federal constitution — Constitution of the United States.
  • field ion microscope — a device in which the atomic structure of the surface of a conductor is made visible by introducing helium gas into the device and applying a high voltage to ionize and accelerate the gas toward a fluorescent screen.
  • field-ion microscope — a device in which the atomic structure of the surface of a conductor is made visible by introducing helium gas into the device and applying a high voltage to ionize and accelerate the gas toward a fluorescent screen.
  • file descriptor leak — (programming)   (Or "fd leak" /F D leek/) A kind of programming bug analogous to a core leak, in which a program fails to close file descriptors ("fd"s) after file operations are completed, and thus eventually runs out of them. See leak.
  • financial consultant — A financial consultant is the same as a financial adviser.
  • financial instrument — A financial instrument is a document or contract that can be traded in a market, that represents an asset to one party and a liability or equity to the other.
  • financial statements — Financial statements are all of the reports that show how a company is performing for a certain period.
  • finite state machine — (mathematics, algorithm, theory)   (FSM or "Finite State Automaton", "transducer") An abstract machine consisting of a set of states (including the initial state), a set of input events, a set of output events, and a state transition function. The function takes the current state and an input event and returns the new set of output events and the next state. Some states may be designated as "terminal states". The state machine can also be viewed as a function which maps an ordered sequence of input events into a corresponding sequence of (sets of) output events. A deterministic FSM (DFA) is one where the next state is uniquely determinied by a single input event. The next state of a nondeterministic FSM (NFA) depends not only on the current input event, but also on an arbitrary number of subsequent input events. Until these subsequent events occur it is not possible to determine which state the machine is in. It is possible to automatically translate any nondeterministic FSM into a deterministic one which will produce the same output given the same input. Each state in the DFA represents the set of states the NFA might be in at a given time. In a probabilistic FSM [proper name?], there is a predetermined probability of each next state given the current state and input (compare Markov chain). The terms "acceptor" and "transducer" are used particularly in language theory where automata are often considered as abstract machines capable of recognising a language (certain sequences of input events). An acceptor has a single Boolean output and accepts or rejects the input sequence by outputting true or false respectively, whereas a transducer translates the input into a sequence of output events. FSMs are used in computability theory and in some practical applications such as regular expressions and digital logic design. See also state transition diagram, Turing Machine.
  • firearms certificate — a certificate that entitles the holder to own and keep a firearm
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?