0%

21-letter words containing i, n, t, e, v

  • display advertisement — an advertisement designed to attract attention by using devices such as conspicuous or elegant typefaces, graphics, etc
  • disruptive technology — A disruptive technology is a new technology, such as computers and the Internet, which has a rapid and major effect on technologies that existed before.
  • distinctiveness ratio — the ratio of the relative frequency of some event in a given sample to that in the general population or another relevant sample
  • divine right of kings — the doctrine that the right of rule derives directly from God, not from the consent of the people.
  • earthmoving equipment — machines, such as bulldozers, that are used for excavating and moving large quantities of earth
  • environmental studies — a university course studying the environment and related issues
  • ethernet private line — (networking)   (EPL) A data service defined by the Metro Ethernet Forum, providing a point-to-point Ethernet connection between a pair of dedicated User-Network Interfaces (UNIs), with a high degree of transparency.
  • extensible vax editor — (text, tool)   (EVE) A DEC product implemented using DEC's Text Processing Utility (TPU).
  • food conversion ratio — a ratio expressing the weight of food required to produce a unit gain in the live weight of an animal
  • fraudulent conversion — conversion committed with the intent to defraud
  • functional imperative — a requirement for the survival of any social system, as communication, control of conflict, or socialization.
  • generic type variable — (programming)   (Also known as a "schematic type variable"). Different occurrences of a generic type variable in a type expression may be instantiated to different types. Thus, in the expression let id x = x in (id True, id 1) id's type is (for all a: a -> a). The universal quantifier "for all a:" means that a is a generic type variable. For the two uses of id, a is instantiated to Bool and Int. Compare this with let id x = x in let f g = (g True, g 1) in f id This looks similar but f has no legal Hindley-Milner type. If we say f :: (a -> b) -> (b, b) this would permit g's type to be any instance of (a -> b) rather than requiring it to be at least as general as (a -> b). Furthermore, it constrains both instances of g to have the same result type whereas they do not. The type variables a and b in the above are implicitly quantified at the top level: f :: for all a: for all b: (a -> b) -> (b, b) so instantiating them (removing the quantifiers) can only be done once, at the top level. To correctly describe the type of f requires that they be locally quantified: f :: ((for all a: a) -> (for all b: b)) -> (c, d) which means that each time g is applied, a and b may be instantiated differently. f's actual argument must have a type at least as general as ((for all a: a) -> (for all b: b)), and may not be some less general instance of this type. Type variables c and d are still implicitly quantified at the top level and, now that g's result type is a generic type variable, any types chosen for c and d are guaranteed to be instances of it. This type for f does not express the fact that b only needs to be at least as general as the types c and d. For example, if c and d were both Bool then any function of type (for all a: a -> Bool) would be a suitable argument to f but it would not match the above type for f.
  • get/be given the boot — If you get the boot or are given the boot, you are told that you are not wanted any more, either in your job or by someone you are having a relationship with.
  • give place to someone — to make room for or be superseded by someone
  • give sb a green light — If someone in authority gives you a green light, they give you permission to do something.
  • give sb the runaround — If someone gives you the runaround, they deliberately do not give you all the information or help that you want, and send you to another person or place to get it.
  • give someone a tinkle — to call someone on the telephone
  • give someone the best — to concede someone's superiority
  • give someone the bird — to tell someone rudely to depart; scoff at; hiss
  • give someone the gate — a movable barrier, usually on hinges, closing an opening in a fence, wall, or other enclosure.
  • give someone the slip — to move, flow, pass, or go smoothly or easily; glide; slide: Water slips off a smooth surface.
  • government in waiting — a political group which is hoping to be elected to govern in the near future
  • government securities — securities issued by the US Government
  • greenwich observatory — the national astronomical observatory of Great Britain, housed in a castle in E Sussex; formerly located at Greenwich.
  • have it coming to one — to deserve what one is about to suffer
  • have one's hands tied — the terminal, prehensile part of the upper limb in humans and other primates, consisting of the wrist, metacarpal area, fingers, and thumb.
  • have the inside track — If you say that someone has the inside track, you mean that they have an advantage, for example special knowledge about something.
  • home improvement loan — a government loan for house improvements such as insulation, adding a bathroom, or urgent repairs
  • in one's shirtsleeves — not wearing a jacket
  • inclusive disjunction — See under disjunction (def 2a).
  • induced radioactivity — artificial radioactivity.
  • industrial revolution — (sometimes initial capital letters) the totality of the changes in economic and social organization that began about 1760 in England and later in other countries, characterized chiefly by the replacement of hand tools with power-driven machines, as the power loom and the steam engine, and by the concentration of industry in large establishments.
  • inflationary universe — a version of the big bang theory in which the universe underwent very rapid growth during the first fraction of a second before it settled down to its current rate of expansion.
  • information retrieval — the systematic storage and recovery of data, as from a file, card catalog, or the memory bank of a computer. Abbreviation: IR.
  • internal jugular vein — Anatomy. a jugular vein.
  • internet chess server — (networking, games)   An interactive meeting-place on the Internet where people can play chess against each other.
  • intravenous drug user — a drug addict who injects drugs (esp heroin) intravenously
  • investment management — the process of managing business investments
  • java native interface — (programming)   (JNI) A native programming interface for Java that allows Java code running inside a Java Virtual Machine to interoperate with applications and libraries written in other programming languages such as C, C++ and assembly language.
  • kekule von stradonitz — Friedrich August [free-drikh ou-goo st] /ˈfri drɪx ˈaʊ gʊst/ (Show IPA), 1829–96, German chemist.
  • lafcadio's adventures — French Les Caves du Vatican. a novel (1914) by André Gide.
  • leave holding the bag — a container or receptacle of leather, plastic, cloth, paper, etc., capable of being closed at the mouth; pouch.
  • leave sb in the lurch — If someone leaves you in the lurch, they go away or stop helping you at a very difficult time.
  • magneto-optical drive — magneto-optical disk
  • mean square deviation — variance (def 3).
  • mean time to recovery — (specification)   (MTTR) The average time that a device will take to recover from a non-terminal failure. Examples of such devices range from self-resetting fuses (where the MTTR would be very short, probably seconds), up to whole systems which have to be replaced. The MTTR would usually be part of a maintenance contract, where the user would pay more for a system whose MTTR was 24 hours, than for one of, say, 7 days. This means the supplier is guaranteeing to have the system up and running again within 24 hours (or 7 days) of being notified of the failure. Some devices have a MTTR of zero, which means that they have redundant components which can take over the instant the primary one fails, see RAID for example. See also Mean Time Between Failures.
  • model-view-controller — (programming)   (MVC) A way of partitioning the design of interactive software; a software architecture pattern. The "model" is the internal workings of the program (the data objects and algorithms), the "view" is how the user sees the state of the model and the "controller" is how the user changes the state or provides input. MVC was the original kind of what is now sometimes called an MV* pattern. Trygve Reenskaug introduced it into Smalltalk-76 while visiting Xerox PARC in the 1970s.
  • motivational research — the application of the knowledge and techniques of the social sciences, especially psychology and sociology, to understanding consumer attitudes and behavior: used as a guide in advertising and marketing.
  • multi-level marketing — Multi-level marketing is a marketing technique which involves people buying a product, then earning a commission by selling it to their friends. The abbreviation MLM is also used.
  • national park service — a division of the Department of the Interior, created in 1916, that administers national parks, monuments, historic sites, and recreational areas.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?