0%

18-letter words that end in tion

  • gene amplification — an increase in the frequency of replication of a DNA segment.
  • generating station — a power station
  • genital mutilation — any type of cutting or removal of all or some of the genital organs, especially excision of the clitoris.
  • gensym corporation — (company)   A company that supplies software and services for intelligent operations management. Common applications include quality management, process optimisation, dynamic scheduling, network management, energy and environmental management, and process modelling and simulation. Their products include G2.
  • germline insertion — the insertion of cloned genes into the egg or sperm cell of an organism, using a gene transfer technique, in order to perpetuate a desired trait in its descendants, as pest-resistance in a crop plant.
  • have no hesitation — If you say that you have no hesitation in doing something, you are emphasizing that you will do it immediately or willingly because you are certain that it is the right thing to do.
  • heat of combustion — the heat evolved when one mole of a substance is burnt in oxygen at constant volume
  • helicopter station — a place where helicopters are kept in readiness for use
  • helmholtz function — the thermodynamic function of a system that is equal to its internal energy minus the product of its absolute temperature and entropy: A decrease in the function is equal to the maximum amount of work available during a reversible isothermal process.
  • historical fiction — the genre of literature, film, etc., comprising narratives that take place in the past and are characterized chiefly by an imaginative reconstruction of historical events and personages.
  • hold a reservation — If a hotel holds a reservation, it keeps a room for someone, and does not give it to someone else.
  • honourable mention — If something that you do in a competition is given an honourable mention, it receives special praise from the judges although it does not actually win a prize.
  • house of detention — a place maintained by the civil authorities for persons charged with a crime, and sometimes for witnesses, awaiting trial.
  • hungarian notation — (language, convention)   A linguistic convention requiring one or more letters to be added to the start of variable names to denote scope and/or type. Hungarian Notation is mainly confined to Microsoft Windows programming environments, such as Microsoft C, C++ and Visual Basic. It was originally devised by Charles Simonyi, a Hungarian, who was a senior programmer at Microsoft for many years. He disliked the way that names in C programs gave no clue as to the type, leading to frequent programmer errors. According to legend, fellow programmers at Microsoft, on seeing the convoluted, vowel-less variable names produced by his scheme, said, "This might as well be in Greek - or even Hungarian!". They made up the name "Hungarian notation" (possibly with "reverse Polish notation" in mind). Hungarian Notation is not really necessary when using a modern strongly-typed language as the compiler warns the programmer if a variable of one type is used as if it were another type. It is less useful in object-oriented programming languages such as C++, where many variables are going to be instances of classes and so begin with "obj". In addition, variable names are essentially only comments, and thus are just as susceptible to becoming out-of-date and incorrect as any other comment. For example, if a signed short int becomes an unsigned long int, the variable name, and every use of it, should be changed to reflect its new type. A variable's name should describe the values it holds. Type and scope are aspects of this, but Hungarian Notation overemphasises their importance by allocating so much of the start of the name to them. Furthermore, type and scope information can be found from the variable's declaration. Ironically, this is particularly easy in the development environments in which Hungarian Notation is typically used.
  • huntington station — a town on W Long Island, in SE New York.
  • hyperconcentration — the act of concentrating; the state of being concentrated.
  • hyperproliferation — (biology) An abnormally high rate of proliferation of cells by rapid division.
  • hypersensitization — Photography. to treat (a film or emulsion) so as to increase its speed.
  • hypersexualisation — Alternative spelling of hypersexualization.
  • hypersexualization — The act or process of hypersexualizing.
  • indirect injection — Indirect injection is a diesel engine injection system in which ignition is started before the burning mixture enters the main combustion chamber.
  • inductive relation — A relation R between domains D and E is inductive if for all chains d1 .. dn in D and e1 .. en in E,
  • indus civilization — an ancient civilization that flourished in the Indus River valley, from about 2500 to 1500 b.c.: extensive archaeological excavations at the main sites of Mohenjo-Daro and Harappa in Pakistan.
  • instrument station — station (def 14a).
  • intercommunication — to communicate mutually, as people.
  • internal secretion — a secretion, esp a hormone, that is absorbed directly into the blood
  • iomega corporation — (company, storage)   A storage device manufacturer whose major products are the Zip and Jaz removable disk drives and Ditto tape drives. They became popular with an early product called the Bernoulli Box. These products fall in line with their focus set in 1994 "to help people manage their stuff". The company's stated aim is to create portable, fast, large and cheap storage solutions. Iomega's major competitor in the growing market for removable disks is SyQuest, who seem to always be a few weeks behind them. In general, Iomega target the Small Office/Home Office. They are also investigating the growing digital photography market which also needs large removable storage devices. Iomega's president and CEO is Kim Edwards. They have nearly 2000 employees in offices world-wide. Revenue for the quarter ending Dec 1996 was $371 million and net income was $20 million. Headquarters: Roy, Utah, USA.
  • ionizing radiation — any radiation, as a stream of alpha particles or x-rays, that produces ionization as it passes through a medium.
  • ip next generation — Internet Protocol version 6
  • itemized deduction — tax: individually listed tax exempt expenditures
  • job classification — an arrangement of different types of employment within a company or industry, according to the skill, experience, or training required.
  • joint consultation — a formal system of communication between the management of an organization and the employees' representatives used prior to taking decisions affecting the workforce, usually effected through a joint consultative committee
  • josephson junction — a high-speed switch, used in experimental computers, that operates on the basis of a radiative phenomenon (Jo·sephson effect) exhibited by a pair of superconductors separated by a thin insulator.
  • killer application — a highly innovative, very powerful, or extremely useful computer application; esp one sufficiently important as to justify purchase of the equipment or software
  • lambda abstraction — A term in lambda-calculus denoting a function. A lambda abstraction begins with a lower-case lambda (represented as "\" in this document), followed by a variable name (the "bound variable"), a full stop and a lambda expression (the body). The body is taken to extend as far to the right as possible so, for example an expression, \ x . \ y . x+y is read as \ x . (\ y . x+y). A nested abstraction such as this is often abbreviated to: \ x y . x + y The lambda expression (\ v . E) denotes a function which takes an argument and returns the term E with all free occurrences of v replaced by the actual argument. Application is represented by juxtaposition so (\ x . x) 42 represents the identity function applied to the constant 42. A lambda abstraction in Lisp is written as the symbol lambda, a list of zero or more variable names and a list of zero or more terms, e.g. (lambda (x y) (plus x y)) Lambda expressions in Haskell are written as a backslash, "\", one or more patterns (e.g. variable names), "->" and an expression, e.g. \ x -> x.
  • law of gravitation — a law stating that any two masses attract each other with a force equal to a constant (constant of gravitation) multiplied by the product of the two masses and divided by the square of the distance between them.
  • law of mass action — the statement that the rate of a chemical reaction is proportional to the concentrations of the reacting substances.
  • law of segregation — the principle, originated by Gregor Mendel, stating that during the production of gametes the two copies of each hereditary factor segregate so that offspring acquire one factor from each parent.
  • lenient evaluation — (reduction)   An evaluation strategy, described in [Traub, FPCA 89], under which all redexes are evaluated in parallel except inside the arms of conditionals and inside lambda abstractions. Lenient evaluation is an example of an eager evaluation strategy.
  • linear combination — a sum of products of each quantity times a constant: The expression aX + bY + cZ is a linear combination of X, Y, and Z, where a, b, and c are constants.
  • lingual titubation — stuttering or stammering
  • magnetic induction — Also called magnetic flux density. a vector quantity used as a measure of a magnetic field. Symbol: B.
  • magnetic variation — variation (def 8).
  • mental reservation — an unexpressed doubt or qualification about a situation, person, etc.
  • mental retardation — Usually Offensive. a developmental disorder characterized in varying degrees by a subnormal ability to learn, a substantially low IQ, and impaired social adjustment.
  • microencapsulation — the process of enclosing chemical substances in microcapsules.
  • missing definition — (introduction)   First, this is an (English language) computing dictionary. It includes lots of terms from related fields such as mathematics and electronics, but if you're looking for (or want to submit) words from other subjects or general English words or other languages, try http://wikipedia.org/, http://onelook.com/, http://yourdictionary.com/, http://www.dictionarist.com/ or http://reference.allrefer.com/. If you've already searched the dictionary for a computing term and it's not here then please don't tell me. There are, and always will be, a great many missing terms, no dictionary is ever complete. I use my limited time to process the corrections and definitions people have submitted and to add the most frequently requested missing terms. Try one of the sources mentioned above or http://techweb.com/encyclopedia/, http://whatis.techtarget.com/ or http://google.com/. See the Help page for more about missing definitions and bad cross-references.
  • misunderestimation — (nonstandard) An inaccurate underestimation, or an act of misunderestimating.
  • monophthongization — to change into or pronounce as a monophthong.
  • morphine addiction — the fact or condition of being addicted to morphine
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?