0%

21-letter words containing a, n, t, i, p, e

  • computer aided design — (application)   (CAD) The part of CAE concerning the drawing or physical layout steps of engineering design. Often found in the phrase "CAD/CAM" for ".. manufacturing".
  • computer-aided design — the use of computer techniques in designing products, esp involving the use of computer graphics
  • compuware corporation — (company)   A US software and service company established in 1973. Since 1973, Compuware focused on optimising business software development, testing and operation. In 1999 the company had grown to over 15,000 employees worldwide and revenues of more than $1.6B. By 2013 it had shrunk to less than 5000. Current (2013) products and services include performance optimisation, availability and quality of web, non-web, mobile, streaming and cloud applications; project portfolio management, professional services automation; mainframe applications and developer tools; rapid application development and professional services.
  • concert grand (piano) — the largest size of grand piano, for concert performance
  • conditional operation — a step in a computer program that determines which of two or more instructions or instruction sequences to execute next, depending on whether or not one or more specified conditions have been met.
  • cone penetration test — a method of testing soils by pressing a cone of standard dimensions into the soil under a known load and measuring the penetration
  • cooperative apartment — a block of flats belonging to a corporation in which shares are owned in proportion to the relative value of the flat occupied
  • cooperative-apartment — working or acting together willingly for a common purpose or benefit.
  • counterinterpretation — An interpretation that goes against another interpretation.
  • cyclical unemployment — unemployment caused by fluctuations in the level of economic activity inherent in trade cycles
  • deep scattering layer — any of the stratified zones in the ocean which reflect sound during echo sounding, usually composed of marine organisms which migrate vertically from c. 250 to 800 m (c. 820 to 2,625 ft)
  • demand-pull inflation — inflation in which rising demand results in a rise in prices.
  • department of justice — the department of the U.S. federal government charged with the responsibility for the enforcement of federal laws. Abbreviation: DOJ.
  • deprovincialization's — to make provincial in character.
  • designated employment — (in Britain) any of certain kinds of jobs reserved for handicapped workers under the Disabled Persons (Employment) Act 1944
  • development education — an area of study that aims to give pupils an understanding of their involvement in world affairs
  • developmental biology — the study of the development of multicellular organisms, including the study of the earliest stages of embryonic structure and tissue differentiation
  • dew-point temperature — the temperature to which air must be cooled, at a given pressure and water-vapor content, for it to reach saturation; the temperature at which dew begins to form.
  • differential operator — a function, usually expressed as a polynomial, that indicates linear combinations of the derivatives of the expression on which it operates.
  • differential topology — the branch of topology that studies the properties of differentiable manifolds that remain invariant under diffeomorphisms.
  • disk operating system — DOS.
  • displacement activity — a behavior performed out of its usual context and apparently irrelevant to the prevailing situation, as eating when an unknown individual approaches, tending to occur when appropiate behaviors, as attacking or fleeing, are in conflict or obstructed.
  • display advertisement — an advertisement designed to attract attention by using devices such as conspicuous or elegant typefaces, graphics, etc
  • double predestination — the doctrine that God has foreordained both those who will be saved and those who will be damned.
  • double spanish burton — a tackle having one standing block and two running blocks, giving a mechanical advantage of five, neglecting friction.
  • drop the handkerchief — a children's game in which all the players but one stand in a circle facing inward, while that one player stealthily drops a handkerchief behind a player in the circle who must pursue and attempt to catch the one who dropped the handkerchief before the latter reaches the vacated place.
  • earthmoving equipment — machines, such as bulldozers, that are used for excavating and moving large quantities of earth
  • eastern european time — a standard time used by some countries in Eastern Europe, such as Finland, Romania, etc and also some countries of the Middle East and North Africa
  • electric displacement — the electric flux density when an electric field exists in free space into which a dielectric is introduced
  • electric polarization — Electric polarization is the type of polarization of electricity that occurs in a dielectric.
  • electromagnetic pulse — a surge of electromagnetic radiation, esp one resulting from a nuclear explosion, which can disrupt electronic devices and, occasionally, larger structures and equipment
  • empire state building — New York City skyscraper
  • endoplasmic reticulum — an extensive intracellular membrane system whose functions include synthesis and transport of lipids and, in regions where ribosomes are attached, of proteins
  • epidemic encephalitis — any type of widespread encephalitis caused by various viruses
  • 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.
  • exposure compensation — the act of overriding a camera's automatic exposure in order to achieve a particular effect or due to difficult lighting conditions
  • flotation compartment — in a boat, an enclosed section filled with air or gas to give buoyancy
  • forensic anthropology — the branch of physical anthropology in which anthropological data, criteria, and techniques are used to determine the sex, age, genetic population, or parentage of skeletal or biological materials in questions of civil or criminal law.
  • framing specification — A specification of the "protocol bits" that surround the "data bits" on a communications channel to allow the data to be "framed" into chunks, like start and stop bits in EIA-232. It allows a receiver to synchronize at points along the data stream.
  • french fried potatoes — a more formal name for chips
  • functional dependency — (database)   Given a relation R (in a relational database), attribute Y of R is functionally dependent on attribute X of R and X of R functionally determines Y of R (in symbols R.X -> R.Y) if and only if each X in R has associated with it precisely one Y in R (at any one time). Attributes X and Y may be composite. This is very close to a function in the mathematical sense.
  • functional imperative — a requirement for the survival of any social system, as communication, control of conflict, or socialization.
  • gastrohepatic omentum — lesser omentum.
  • gender disappointment — a feeling of depression or anxiety experienced by an expectant parent when the gender of the baby does not match his or her preference
  • 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.
  • genetic amplification — an increase in the frequency of replication of a DNA segment.
  • give place to someone — to make room for or be superseded by someone
  • glacier national park — a national park in NW Montana: glaciers; lakes; forest reserve. 1534 sq. mi. (3970 sq. km).
  • heliocentric parallax — the apparent displacement of an observed object due to a change in the position of the observer.
  • help a person on with — to assist a person in the putting on of (clothes)
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?