0%

24-letter words containing i, t, n, e, v, r

  • above-the-line promotion — Above-the-line promotion is the use of promotional methods that cannot be directly controlled by the company selling the goods or service, such as television or press advertising. Compare below-the-line promotion.
  • administrative assistant — a person employed to aid an executive, as in a corporate department, by coordinating such office services and procedures as the supervision, maintenance, and control of the flow of work and programs, personnel, budgeting, records, etc., for the entire department.
  • administrative-law judge — an official of a federal or state agency who hears, weighs, and decides on evidence in administrative proceedings, and makes recommendations for any necessary legal action.
  • alexandre gustave eiffel — Alexandre Gustave [a-lek-sahn-druh gys-tav] /a lɛkˈsɑ̃ drə güsˈtav/ (Show IPA), 1832–1923, French civil engineer and pioneer aerodynamic researcher.
  • american indian movement — a militant movement or grouping of American Indians, organized in 1968 to combat discrimination, injustice, etc
  • autonomic nervous system — the section of the nervous system of vertebrates that controls the involuntary actions of the smooth muscles, heart, and glands. It has two divisions: the sympathetic and the parasympathetic
  • bradley fighting vehicle — a 25-ton, tracked U.S. armored personnel carrier of the 1980s, designed to carry nine soldiers into battle and armed with a 25mm rapid-fire cannon, a machine gun, and an antitank missile launcher.
  • broadleaved spindle tree — a flowering tree, Euonymus Latifolius, native to some parts of Western Europe and widely planted as an ornamental
  • cerebrovascular accident — a sudden interruption of the blood supply to the brain caused by rupture of an artery in the brain (cerebral haemorrhage) or the blocking of a blood vessel, as by a clot of blood (cerebral occlusion)
  • chain and sprocket drive — A chain and sprocket drive is a type of power transmission in which a roller chain engages with two or more toothed wheels or sprockets, used in engines as a drive from crankshaft to camshaft.
  • coefficient of variation — a measure of the relative variation of distribution independent of the units of measurement; the standard deviation divided by the mean, sometimes expressed as a percentage
  • compact disc interactive — (storage)   (CD-i) An embedded application of CD-ROM allowing the user limited interaction with films, games and educational applications via a special controller.
  • congestive heart failure — heart failure characterized by weakness, breathlessness, and abnormal congestion in the circulatory system, esp. in the lungs or lower legs
  • conservation of momentum — the principle that the total linear or angular momentum in any isolated system is constant, provided that no external force is applied
  • constant linear velocity — (storage)   (CLV) A way of controlling the rotation of the disks in a disk drive in which the linear velocity of the disk surface relative to the read/write heads is kept constant. In order to achieve constant linear velocity, the disk must rotate faster (at a higher angular velocity) when reading or writing tracks closer to the centre. Having a constant linear read/write speed along the track means that the electrical signal to and from the heads has a constant data rate (bits per second), thus simplifying the timing of the drive electronics somewhat. However, rotating at less than the maximum possible rate sacrifices some potential performance compared to the alternative, constant angular velocity. Also, varying the rate causes more vibration and consumes more energy.
  • cooperative credit union — a cooperative group that makes loans to its members at low rates of interest.
  • cooperative multitasking — (parallel, operating system)   A form of multitasking where it is the responsibility of the currently running task to give up the processor to allow other tasks to run. This contrasts with pre-emptive multitasking where the task scheduler periodically suspends the running task and restarts another. Cooperative multitasking requires the programmer to place calls at suitable points in his code to allow his task to be descheduled which is not always easy if there is no obvious top-level main loop or some routines run for a long time. If a task does not allow itself to be descheduled all other tasks on the system will appear to "freeze" and will not respond to user action. The advantage of cooperative multitasking is that the programmer knows where the program will be descheduled and can make sure that this will not cause unwanted interaction with other processes. Under pre-emptive multitasking, the scheduler must ensure that sufficient state for each process is saved and restored that they will not interfere. Thus cooperative multitasking can have lower overheads than pre-emptive multitasking because of the greater control it offers over when a task may be descheduled. Cooperative multitasking is used in RISC OS, Microsoft Windows and Macintosh System 7.
  • crime prevention officer — a member of the police who advises the public on how best to avoid crimes, esp being burgled
  • cross/step over the line — If you say that someone has crossed the line or has stepped over the line, you mean that they have behaved in a way that is considered unacceptable.
  • definite relative clause — a relative clause with a definite relative pronoun as subordinating word, as that they said in We heard the things that they said.
  • destructive distillation — the decomposition of a complex substance, such as wood or coal, by heating it in the absence of air and collecting the volatile products
  • destructive interference — the interference of two waves of equal frequency and opposite phase, resulting in their cancellation where the negative displacement of one always coincides with the positive displacement of the other.
  • detective superintendent — a police officer who investigates crime and who ranks above a detective chief inspector but below a detective chief superintendent
  • diminished seventh chord — a chord often used in an enharmonic modulation and very common in modern music, esp jazz and pop music, consisting of a diminished triad with an added diminished seventh above the root
  • dynamic adaptive routing — Automatic rerouting of traffic based on analysis of current network conditions. This does not include routing decisions based on predefined information.
  • effective number of bits — (hardware)   (ENOB) An indication of the quality of an analog to digital converter. The measurement is related to the test frequency and the signal-to-noise ratio.
  • effective sound pressure — the square root of the mean of the squares of the sound pressures of a sound wave, measured at a given point over a certain time interval.
  • environmental assessment — a formal assessment of the impact a project will have on the environment
  • environmental management — controlled and planned management of the environment
  • environmentally friendly — that has no or the least possible impact on the environment
  • equivalence partitioning — equivalence class partitioning
  • european investment bank — a financial institution of the European Union which is based in Luxembourg and which provides loans, especially to the less economically developed countries of the EU
  • evolutionary computation — Computer-based problem solving systems that use computational models of evolutionary processes as the key elements in design and implementation. A number of evolutionary computational models have been proposed, including evolutionary algorithms, genetic algorithms, the evolution strategy, evolutionary programming, and artificial life.
  • evolutionary programming — (EP) A stochastic optimisation strategy originally conceived by Lawrence J. Fogel in 1960. An initially random population of individuals (trial solutions) is created. Mutations are then applied to each individual to create new individuals. Mutations vary in the severity of their effect on the behaviour of the individual. The new individuals are then compared in a "tournament" to select which should survive to form the new population. EP is similar to a genetic algorithm, but models only the behavioural linkage between parents and their offspring, rather than seeking to emulate specific genetic operators from nature such as the encoding of behaviour in a genome and recombination by genetic crossover. EP is also similar to an evolution strategy (ES) although the two approaches developed independently. In EP, selection is by comparison with a randomly chosen set of other individuals whereas ES typically uses deterministic selection in which the worst individuals are purged from the population.
  • explicit type conversion — (programming)   (Or "cast" in C and elsewhere). A programming construct (syntax) to specify that an expression's value should be converted to a different type. For example, in C, to convert an integer (usually 32 bits) to a char (usually 8 bits) we might write: int i = 42; char *p = &buf; *p = (char) i; The expression "(char)" (called a "cast") converts i's value to char type. Casts (including this one) are often not strictly necessary, due to automatic coercions performed by the compiler, but can be used to make the conversion obvious and to avoid warning messages.
  • give hostages to fortune — to place oneself in a position in which misfortune may strike through the loss of what one values most
  • give something houseroom — to have or keep something in one's house
  • global network navigator — (GNN) A collection of free services provided by O'Reilly & Associates. The Whole Internet Catalog describes the most useful Net resources and services with live links to those resources. The GNN Business Pages list companies on the Internet. The Internet Help Desk provides help in starting Internetq exploration. NetNews is a weekly publication that reports on the news of the Internet, with weekly articles on Internet trends and special events, sports, weather, and comics. There are also pages aobut travel and personal finance. E-mail: <[email protected]>. Telephone: (800) 998 9938 (USA), +1 (707) 829 0515 (outside USA).
  • gottfried von strassburg — early 13th-century German poet; author of the incomplete epic Tristan and Isolde, the version of the legend that served as the basis of Wagner's opera
  • have a finger in the pie — any of the terminal members of the hand, especially one other than the thumb.
  • have at one's fingertips — to have available for instant use
  • have one's head straight — the upper part of the body in humans, joined to the trunk by the neck, containing the brain, eyes, ears, nose, and mouth.
  • house of representatives — the lower legislative branch in many national and state bicameral governing bodies, as in the United States, Mexico, and Japan.
  • implicit type conversion — (programming)   (Or "coercion") The abilty of some compilers to automatically insert type conversion functions where an expression of one type is used in a context where another type is expected. A common example is coercion of integers to reals so that an expression like sin(1) is compiled as sin(integerToReal(1)) where sin is of type Real -> Real. A coercion is usually performed automatically by the compiler whereas a cast is an explicit type conversion inserted by the programmer. See also subtype.
  • intermediate-level waste — radioactive waste material, such as reactor and processing-plant components, that is solidified before being mixed with concrete and stored in steel drums in deep mines or beneath the seabed in concrete chambers
  • internal revenue service — the division of the U.S. Department of the Treasury that collects internal revenue, including income taxes and excise taxes, and that enforces revenue laws.
  • internet access provider — (networking, company)   (IAP) A company or other origanisation which provides access to the Internet to businesses and/or consumers. An IAP purchases an Internet link from another company that has a direct link to the Internet and resells portions of that bandwidth to the general public. For example, an IAP may purchase a T1 link (1.544Mb/s) and resell that bandwidth in chunks consisting of ISDN (64Kb/s, 128Kb/s) and analog modems (14.4Kb/s, 28.8Kb/s). The IAP's customer base is likely to include both businesses and individuals. Individual customers usually connect to the IAP via a modem and telephone line to a (preferably local) point of presence. An IAP may also be an Internet Service Provider.
  • interrupt priority level — The Motorola 68000 family of processors can be at an interrupt priority level from 0 (no interrupt in progress) up to 7. While the processor is handling an interrupt at one level, it will ignore other interrupts at that level or lower.
  • interventional radiology — an application of radiology that enables minimally invasive surgery to be performed with the aid of simultaneous radiological imaging of the field of operation within the body
  • investment opportunities — opportunities to make financial investments

On this page, we collect all 24-letter words with I-T-N-E-V-R. It’s easy to find right word with a certain length. It is the easiest way to find 24-letter word that contains in I-T-N-E-V-R to use in Scrabble or Crossword puzzles

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?