0%

20-letter words containing i, n, t, e, s

  • displacement tonnage — the number of long tons of water displaced by a vessel, light or load displacement being specified.
  • disproportionateness — The state or quality of being disproportionate or out of proportion.
  • distress merchandise — goods sold below the prevailing price in order to raise cash quickly or to meet some other financial emergency.
  • distribution channel — trade: retailer
  • 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 .
  • dressed to the nines — a cardinal number, eight plus one.
  • drink with the flies — to drink alone
  • early warning system — Military. a network of radar installations designed to detect enemy aircraft or missiles in time for the effective deployment of defense systems.
  • early-warning system — Military. a network of radar installations designed to detect enemy aircraft or missiles in time for the effective deployment of defense systems.
  • eastern roman empire — the eastern of the two empires created by the division of the Roman Empire in 395 ad
  • 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.
  • eight queens problem — eight queens puzzle
  • 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.
  • electronic signature — electronic proof of a person's identity
  • eleusinian mysteries — a mystical religious festival, held in September at Eleusis in classical times, in which initiates celebrated Persephone, Demeter, and Dionysus
  • 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
  • enabling legislation — legislation conferring certain specified powers on a person or organization
  • endorsement in blank — an endorsement on a bill of exchange, cheque, etc, naming no payee and thus making the endorsed sum payable to the bearer
  • enterprise javabeans — (specification, business, programming)   (EJB) A server-side component architecture for writing reusable business logic and portable enterprise applications. EJB is the basis of Sun's Java 2 Platform, Enterprise Edition (J2EE). Enterprise JavaBean components are written entirely in Java and run on any EJB compliant server. They are operating system, platform, and middleware independent, preventing vendor lock-in. EJB servers provide system-level services (the "plumbing") such as transactions, security, threading, and persistence. The EJB architecture is inherently transactional, distributed, multi-tier, scalable, secure, and wire protocol neutral - any protocol can be used: IIOP, JRMP, HTTP, DCOM etc. EJB 1.1 requires RMI for communication with components. EJB 2.0 is expected to require support for RMI/IIOP. EJB applications can serve assorted clients: browsers, Java, ActiveX, CORBA etc. EJB can be used to wrap legacy systems. EJB 1.1 was released in December 1999. EJB 2.0 is in development. Sun claims broad industry adoption. 30 vendors are shipping server products implementing EJB. Supporting vendors include IBM, Fujitsu, Sybase, Borland, Oracle, and Symantec. An alternative is Microsoft's MTS (Microsoft Transaction Server).
  • entry qualifications — the qualifications people wishing to enter an organization, university, etc, have to have
  • epidural anaesthesia — numbing injection in the spine
  • epitaxial transistor — a transistor made by depositing a thin pure layer of semiconductor material (epitaxial layer) onto a crystalline support by epitaxy. The layer acts as one of the electrode regions, usually the collector
  • 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.
  • equivalent air speed — the speed at sea level that would produce the same Pitot-static tube reading as that measured at altitude
  • 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
  • estrela mountain dog — a sturdy well-built dog of a Portuguese breed with a long thick coat and a thick tuft of hair round the neck, often used as a guard dog
  • examining magistrate — (in some countries with inquisitorial legal systems) a judge who investigates cases and decides whether there is a case to answer in court
  • 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.
  • extensional equality — (Or extensionality). Functions, f and g are extensionally equal if and only if f x = g x for all x. where "=" means both expressions fail to terminate (under some given reduction strategy) or they both terminate with the same basic value. Two functions may be extensionally equal but not inter-convertible (neither is reducible to the other). E.g. \ x . x+x and \ x . 2*x. See also observational equivalence, referential transparency.
  • external respiration — exchange of oxygen and carbon dioxide across external or respiratory surfaces, as gills or lungs, in multicellular organisms
  • 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.
  • fight for one's life — Someone who is fighting for their life is making a great effort to stay alive, either when they are being physically attacked or when they are very ill.
  • 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 grammar — a simplified form of transformational grammar devised by Noam Chomsky
  • 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.
  • first point of aries — the vernal equinox.
  • first-cause argument — an argument for the existence of God, asserting the necessity of an uncaused cause of all subsequent series of causes, on the assumption that an infinite regress is impossible.
  • first-person shooter — a type of video game in which the player assumes the field of vision of the protagonist, so that the game camera includes the character's weapon, but the rest of the character model is not seen. Abbreviation: FPS.
  • five-elements school — Yin-Yang School.
  • five-star restaurant — a restaurant which has been given the top star-rating
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?