0%

24-letter words containing o, p, e, n, i

  • high-density lipoprotein — a blood constituent involved in the transport of cholesterol and associated with a decreased risk of atherosclerosis and heart attack. Abbreviation: HDL .
  • high-fructose corn syrup — corn syrup to which enzymes have been added to change some of the glucose to fructose, making the product sweeter than regular corn syrup. Abbreviation: HFCS.
  • homolographic projection — an equal-area projection in which the proportion between regions of unequal area is correctly shown.
  • hoop-petticoat narcissus — petticoat narcissus.
  • house of representatives — the lower legislative branch in many national and state bicameral governing bodies, as in the United States, Mexico, and Japan.
  • human potential movement — a movement in psychology that includes group therapy, encounter therapy, primal therapy, etc., is based mainly on Freudian and Gestalt psychology, and is aimed at self-realization
  • human-computer interface — (software, hardware)   (HCI) Any software or hardware that allows a user to interact with a computer. Examples are WIMP, command-line interpreter, or virtual reality. See also Human-Computer Interaction.
  • hyperbetalipoproteinemia — An abnormally high level of betalipoprotein in the blood.
  • implicit differentiation — a method of finding the derivative of an implicit function by taking the derivative of each term with respect to the independent variable while keeping the derivative of the dependent variable with respect to the independent variable in symbolic form and then solving for that derivative.
  • 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.
  • incomplete metamorphosis — insect development, as in the grasshopper and cricket, in which the change is gradual and characterized by the absence of a pupal stage. Compare complete metamorphosis.
  • independent logical file — (database)   (ILF) One kind of dynamic database management system. Examples of ILF databases are INQUIRE, ADABAS, NOMAD, FOCUS and DATACOM.
  • industrial correspondent — a journalist who specializes in reporting the industrial news
  • information superhighway — internet
  • international ice patrol — an annual U.S. Coast Guard patrol of the North Atlantic during the ice season to ascertain the locations of icebergs and to warn ships: undertaken under a 1914 international agreement between 14 maritime countries.
  • 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.
  • internet experiment note — (IEN) A series of reports pertinent to the Internet. IENs were published in parallel to RFCs and are no longer active. See also Internet-Draft, Request For Comments.
  • 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.
  • investment opportunities — opportunities to make financial investments
  • jam programming language — (language)   (JPL) A string-based imperative language from JYACC Corporation, part of the JAM tool for developing screen (non-window) applications.
  • keep up with the joneses — If you say that someone is keeping up with the Joneses, you mean that they are doing something in order to show that they have as much money as other people, rather than because they really want to do it.
  • knowledge representation — The subfield of artificial intelligence concerned with designing and using systems for storing knowledge - facts and rules about some subject. A body of formally represented knowledge is based on a conceptualisation - an abstract view of the world that we wish to represent. In order to manipulate this knowledge we must specify how the abstract conceptualisation is represented as a concrete data structure. An ontology is an explicit specification of a conceptualisation.
  • komi autonomous republic — an autonomous republic in the NW Russian Federation in Europe. 145,221 sq. mi. (376,122 sq. km). Capital: Syktyvkar.
  • lab for computer science — MIT. http://lcs.mit.edu/.
  • laugh in a person's face — to show open contempt or defiance towards a person
  • lease with option to buy — A lease with option to buy is a lease that states that the person leasing the property has the right to purchase it at the end of the lease period.
  • liquid components of gas — Liquid components of gas are associated hydrocarbons in natural gas, which include ethane, propane, and butane.
  • long-spined sea scorpion — Cottus bubalis or Taurulus bubalis
  • low-density polyethylene — highly branched polyethylene with low crystallinity and melting point, and a density of 0.91 to 0.94, prepared at very high pressures, and used mainly for sheeting, films, and packaging materials. Abbreviation: LDPE.
  • make a production out of — to make an unnecessary fuss about
  • mari autonomous republic — autonomous republic in the Russian Federation in Europe. 8994 sq. mi. (23,294 sq. km). Capital: Ioshkar-Ola.
  • mass psychogenic illness — a condition in which a large group of people report similar physical symptoms that are traceable to psychological factors rather than environmental or physiological factors.
  • master-slave manipulator — any of various devices, guided by the hand of the operator, for imitating the motions and tactile sensitivity of the human hand to a greater or lesser extent: used in situations in which direct handling of the objects or materials involved would be dangerous or impossible.
  • mathematical expectation — Mathematics. the product of the probability of the occurrence of an event and the value associated with the occurrence of a given event.
  • minister plenipotentiary — plenipotentiary.
  • monopolistic competition — the form of imperfect competition that exists when there are many producers or sellers of similar but differentiated goods or services
  • multiple-valued function — function (def 4b).
  • mutual insurance company — an insurance company owned by the policyholders and not by shareholders
  • nalbuphine hydrochloride — an opiate drug used as a painkiller
  • narcissistic personality — a personality disorder characterized by extreme self-centeredness and self-absorption, fantasies involving unrealistic goals, an excessive need for attention and admiration, and disturbed interpersonal relationships.
  • network operating system — (operating system)   (NOS) The operating system on Control Data Corporation's Cyber Computer.
  • neutrosophic probability — (logic)   An extended form of probability based on Neutrosophy, in which a statement is held to be t true, i indeterminate, and f false, where t, i, f are real values from the ranges T, I, F, with no restriction on T, I, F or the sum n=t+i+f.
  • new programming language — (language)   (NEWP) A language which replaced ESPOL on the Burroughs Large System.
  • newton-raphson iteration — (algorithm)   An iterative algorithm for solving equations. Given an equation, f x = 0 and an initial approximation, x(0), a better approximation is given by: x(i+1) = x(i) - f(x(i)) / f'(x(i)) where f'(x) is the first derivative of f, df/dx. Newton-Raphson iteration is an example of an anytime algorithm in that each approximation is no worse than the previous one.
  • non-proliferation treaty — an international agreement signed in 1968 which aims to reduce the spread of nuclear weapons
  • nonparametric statistics — the branch of statistics that studies data measurable on an ordinal or nominal scale, to which arithmetic operations cannot be applied
  • not ready for prime time — Usable, but only just so; not very robust; for internal use only. Said of a program or device. Often connotes that the thing will be made more solid Real Soon Now. This term comes from the ensemble name of the original cast of "Saturday Night Live", the "Not Ready for Prime Time Players". It has extra flavour for hackers because of the special (though now semi-obsolescent) meaning of prime time. Compare beta.
  • officers' training corps — part of the British Army which provides military leadership training to students at UK universities
  • open data-link interface — (networking, standard)   (ODI) A Novell-developed network card API that provides media and protocol independence. It allows the sharing of a single card by multiple transport layer protocols and resolves conflicts.
  • open shortest-path first — Open Shortest-Path First Interior Gateway Protocol
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?