0%

20-letter words containing v, e, n

  • collective ownership — ownership by a group for the benefit of members of that group
  • comparative judgment — any judgment about whether there is a difference between two or more stimuli
  • comparative religion — a field of study seeking to derive general principles from a comparison and classification of the growth and influence of various religions.
  • comprehensive school — a secondary school for children of all abilities from the same district
  • conductive education — an educational system, developed in Hungary by András Petö, in which teachers (conductors) teach children and adults with motor disorders to function independently, by guiding them to attain their own goals in their own way
  • conferencing over ip — (communications, standard)   (CoIP) Standards for the transmission of multimedia over the Internet. CoIP extends VoIP (voice over Internet Protocol) with text, images, video. The main CoIP standard is based on H.323. The VoIP forum of the IMTC merged with the H.323 Activity Group in January 1999 to form the Conferencing over IP (CoIP) Activity Group. VoIP uses "VoIP Devices" as gateways to route voice data packets over the Internet or PSTN. Protocols such as SGCP and its successor MGCP extend VoIP to handle media other than voice data.
  • conservation of mass — the principle that the total mass of any isolated system is constant and is independent of any chemical and physical changes taking place within the system
  • conservative baptist — a member of a Protestant denomination (Conservative Baptist Association of America) organized in Milwaukee, Wisconsin, in 1948.
  • conservative judaism — a movement reacting against the radicalism of Reform Judaism, rejecting extreme change and advocating moderate relaxations of traditional Jewish law, by an extension of the process by which its adherents claim traditional Orthodox Judaism evolved
  • convective discharge — the repulsion of ions of a gas by a highly charged body, creating a discernible wind.
  • conventional weapons — weapons which are not nuclear
  • convergent evolution — the evolutionary development of a superficial resemblance between unrelated animals that occupy a similar environment, as in the evolution of wings in birds and bats
  • conversation stopper — a comment that is so shocking or boring that people stop talking
  • convertible currency — A convertible currency is a currency that can be bought and sold on the open market for other currencies.
  • copulative asyndeton — a staccato effect produced by omitting copulative connectives between two or more items in a group, as in “Friends, Romans, countrymen.”.
  • coroneted fruit dove — a brightly coloured bird of the Columbidae family with a distinctive marking on its head, found in Indonesia and Papua new Guinea
  • corporate governance — the balance of control between the stakeholders, managers, and directors of an organization
  • cost-of-living index — a numerical scale by means of which cost-of-living levels can be compared with a base number
  • counterrevolutionary — Counterrevolutionary activities are activities intended to reverse the effects of a previous revolution.
  • counterrevolutionist — A counterrevolutionary.
  • covenant of warranty — warranty (def 2b).
  • covenant-of-warranty — warranty (def 2b).
  • creative imagination — the faculty of imagining, or of forming mental images or concepts of what is not actually present to the senses.
  • crossover distortion — distortion that sometimes occurs at a frequency (crossover frequency) at which a crossover network switches signals from one speaker to another.
  • crude oil evaluation — Crude oil evaluation is the process of assessing the chemical and physical properties of crude oil, against particular standards.
  • daylight saving time — Daylight Saving Time is a period of time in the summer when the clocks are set one hour forward, so that people can have extra light in the evening.
  • daylight-saving time — the civil time observed when daylight saving is adopted in a country or community.
  • death of ivan ilyich — a short novel (1884) by Leo Tolstoy.
  • declarative language — (language)   Any relational language or functional language. These kinds of programming language describe relationships between variables in terms of functions or inference rules, and the language executor (interpreter or compiler) applies some fixed algorithm to these relations to produce a result. Declarative languages contrast with imperative languages which specify explicit manipulation of the computer's internal state; or procedural languages which specify an explicit sequence of steps to follow. The most common examples of declarative languages are logic programming languages such as Prolog and functional languages like Haskell. See also production system.
  • deep vein thrombosis — Deep vein thrombosis is a serious medical condition caused by blood clots in the legs moving up to the lungs. The abbreviation DVT is also used.
  • deep-vein thrombosis — a condition in which a blood clot forms in a vein deep beneath the skin, typically in the leg or pelvic area: Immobility and lack of exercise are risk factors for deep-vein thrombosis.
  • descriptive notation — a method of denoting the squares on the chessboard in which each player names the files from the pieces that stand on them at the opening and numbers the ranks away from himself
  • determinate cleavage — cell division in a fertilized or unfertilized egg resulting in daughter cells that are no longer able to produce a complete embryo by themselves
  • developing-out paper — a sensitized printing paper requiring development in order to bring out the image. Abbreviation: D.O.P.
  • development planning — the planning of the development of an area of land
  • digital service unit — data service unit
  • do someone a service — If you do someone a service, you do something that helps or benefits them.
  • documentary evidence — law: written
  • dolly varden pattern — a fabric print consisting of bouquets of flowers.
  • drive a hard bargain — be tough negotiator
  • effective resistance — the resistance to an alternating current, expressed as the ratio of the power dissipated to the square of the effective current.
  • electromagnetic wave — a wave of energy propagated in an electromagnetic field
  • embryo vitrification — a method of in vitro fertilization in which the embryo is exposed to a vitreous solution and frozen before being thawed and implanted into the uterus
  • 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).
  • environment variable — (programming, operating system)   A variable that is bound in the current environment. When evaluating an expression in some environment, the evaluation of a variable consists of looking up its name in the environment and substituting its value. Most programming languages have some concept of an environment but in Unix shell scripts it has a specific meaning slightly different from other contexts. In shell scripts, environment variables are one kind of shell variable. They differ from local variables and command line arguments in that they are inheritted by a child process. Examples are the PATH variable that tells the shell the file system paths to search to find command executables and the TZ variable which contains the local time zone. The variable called "SHELL" specifies the type of shell being used. These variables are used by commands or shell scripts to discover things about the environment they are operating in. Environment variables can be changed or created by the user or a program. To see a list of environment variables type "setenv" at the csh or tcsh prompt or "set" at the sh, bash, jsh or ksh prompt. In other programming languages, e.g. functional programming languages, the environment is extended with new bindings when a function's parameters are bound to its actual arguments or when new variables are declared. In a block-structured procedural language, the environment usually consists of a linked list of activation records.
  • environmental health — the issues dealt with by the Environmental Health Department of a local authority, such as prevention of the spread of communicable diseases, food safety and hygiene, control of infestation by insects or rodents, etc
  • environmental impact — the impact on the environment created by an industry, service, plan, or project
  • equivalence relation — (mathematics)   A relation R on a set including elements a, b, c, which is reflexive (a R a), symmetric (a R b => b R a) and transitive (a R b R c => a R c). An equivalence relation defines an equivalence class. See also partial equivalence relation.
  • equivalent air speed — the speed at sea level that would produce the same Pitot-static tube reading as that measured at altitude
  • evening primrose oil — an oil, obtained from the seeds of the evening primrose, that is claimed to stimulate the production of prostaglandins
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?