0%

18-letter words that end in ion

  • over-extrapolation — to infer (an unknown) from something that is known; conjecture.
  • over-pronunciation — to pronounce (a word, syllable, etc.) in an exaggerated, affected, or excessively careful manner.
  • overcapitalization — The state of being overcapitalized.
  • overgeneralization — the act or process of overgeneralizing.
  • overidentification — an act or instance of identifying; the state of being identified.
  • overinterpretation — the act of interpreting; elucidation; explication: This writer's work demands interpretation.
  • overpressurization — pressure in excess of normal atmospheric pressure, as that caused by an explosion's shock wave or created in an accelerating airplane.
  • overrepresentation — to give too much representation to; represent in numbers that are disproportionately high.
  • overspecialization — excessive specialization, as in a field of study.
  • pan american union — a former organization of American republics dedicated to furthering understanding and peace: replaced in 1970 by the secretariat of the Organization of American States.
  • parallactic motion — the apparent motion of stars due to the earth's orbital motion.
  • parallel evolution — the independent development of closely corresponding adaptive features in two or more groups of organisms that occupy different but equivalent habitats, as marsupial mammals in Australia and placental mammals on other continents.
  • parallel reduction — A form of applicative order reduction in which all redexes in an expression are reduced simultaneously. Variants include parallel outermost reduction and lenient reduction. See normal order reduction.
  • partial evaluation — (compiler, algorithm)   (Or "specialisation") An optimisation technique where the compiler evaluates some subexpressions at compile-time. For example, Partial evaluation might change the termination properties of the program if, for example, the expression (x * 0) was reduced to 0 it would terminate even if x (and thus x * 0) did not. It may be necessary to reorder an expression to partially evaluate it, e.g. f x y = (x + y) + 1 g z = f 3 z If we rewrite f: f x y = (x + 1) + y then the expression x+1 becomes a constant for the function g and we can say g z = f 3 z = (3 + 1) + z = 4 + z Partial evaluation of built-in functions applied to constant arguments is known as constant folding. See also full laziness.
  • passing modulation — a modulation of a temporary nature.
  • percussion section — orchestra, group: drums, etc.
  • perfect contrition — sincere penitence or remorse.
  • personal exemption — Your personal exemption is the amount of money that is deducted from your gross income before you have to start paying income tax.
  • peters' projection — a form of modified world map projection that attempts to reflect accurately the relative surface areas of landmasses, an approach which gives greater prominence (than do standard representations) to equatorial countries
  • photodecomposition — the breaking down of molecules by radiant energy.
  • photoisomerization — isomerization induced by light.
  • photosensitization — to make (a material) photosensitive, as by the application of a photosensitive emulsion.
  • physical education — systematic instruction in sports, exercises, and hygiene given as part of a school or college program.
  • piecewise function — a function whose definition changes depending on the value of the independent variable
  • pilotless ignition — a system for igniting a gas burner, as in a gas range, furnace, or boiler, without the use of a pilot light.
  • plane polarization — a type of polarization in which the electric vector of waves of light or other electromagnetic radiation is restricted to vibration in a single plane
  • plenum ventilation — a system of mechanical ventilation in which fresh air is forced into the spaces to be ventilated from a chamber (plenum chamber) at a pressure slightly higher than atmospheric pressure, so as to expel foul air.
  • political question — a question regarded by the courts as being a matter to be determined by another department of government rather than of law and therefore one with which they will not deal, as the recognition of a foreign state.
  • portal circulation — blood flow in a portal system.
  • pragmatic sanction — any one of various imperial decrees with the effect of fundamental law.
  • preferred position — especially desirable advertising space for which, if it is specifically requested by the advertiser, a publication charges a premium rate.
  • prestidigitization — /pres`t*-di"j*-ti:-zay"sh*n/ 1. A term coined by Daniel Klein <[email protected]> for the act of putting something into digital notation via sleight of hand. 2. Data entry through legerdemain.
  • priority inversion — (parallel)   The state of a concurrent system where a high priority task is waiting for a low priority task which is waiting for a medium priority task. The system may become unstable and crash under these circumstances. In an operating system that uses multiple tasks, each task (or context) may be given a priority. These priorities help the scheduler decide which task to run next. Consider tasks, L, M, and H, with priorities Low, Medium, and High. M is running and H is blocked waiting for some resource that is held by L. So long as any task with a priority higher than L is runable, it will prevent task L, and thus task H, from running. Priority inversion is generally considered either as a high-level design failure or an implementation issue to be taken into account depending on who is talking. Most operating systems have methods in place to prevent or take inversion into account. Priority inheritance is one method. The most public instance of priority inversion is the repeated 'fail-safe' rebooting of the Mars Pathfinder. base station ('Sagan Memorial Station').
  • public corporation — a corporation, owned and operated by a government, established for the administration of certain public programs.
  • public examination — an examination, such as a GCSE exam, that is set by a central examining board
  • qattara depression — a desert basin in the Libyan Desert, in NW Egypt: lowest point is 435 feet (133 meters) below sea level. 6950 sq. mi. (18,000 sq. km).
  • quadratic equation — an equation containing a single variable of degree 2. Its general form is ax 2 + bx + c = 0, where x is the variable and a, b, and c are constants (a ≠ 0).
  • racial segregation — social policy: separation of races
  • radical expression — an expression in which radical signs appear.
  • radiocommunication — communication by means of radio waves
  • radius of gyration — the distance from an axis at which the mass of a body may be assumed to be concentrated and at which the moment of inertia will be equal to the moment of inertia of the actual mass about the axis, equal to the square root of the quotient of the moment of inertia and the mass.
  • rational operation — any of the mathematical operations of addition, subtraction, multiplication, and division.
  • reaction formation — a behavioral tendency developed in direct opposition to a repressed impulse.
  • recharacterization — portrayal; description: the actor's characterization of a politician.
  • recovery operation — the process of locating and retrieving bodies, esp following an explosion or natural disaster
  • recursive function — a function defined in terms of the repeated application of a number of simpler functions to their own values, by specifying a base clause and a recursion formula
  • reduction division — the first division of meiosis in which the number of chromosomes is reduced to half the original number.
  • regular expression — 1.   (text, operating system)   (regexp, RE) One of the wild card patterns used by Perl and other languages, following Unix utilities such as grep, sed, and awk and editors such as vi and Emacs. Regular expressions use conventions similar to but more elaborate than those described under glob. A regular expression is a sequence of characters with the following meanings (in Perl, other flavours vary): An ordinary character (not one of the special characters discussed below) matches that character. A backslash (\) followed by any special character matches the special character itself. The special characters are: "." matches any character except newline; "RE*" (where RE is any regular expression and the "*" is called the "Kleene star") matches zero or more occurrences of RE. If there is any choice, the longest leftmost matching string is chosen. "^" at the beginning of an RE matches the start of a line and "$" at the end of an RE matches the end of a line. (RE) matches whatever RE matches and \N, where N is a digit, matches whatever was matched by the RE between the Nth "(" and its corresponding ")" earlier in the same RE. Many flavours use \(RE\) instead of just (RE). The concatenation of REs is a RE that matches the concatenation of the strings matched by each RE. RE1 | RE2 matches whatever RE1 or RE2 matches. \< matches the beginning of a word and \> matches the end of a word. Many flavours use "\b" instead as the special character for "word boundary". RE{M} matches M occurences of RE. RE{M,} matches M or more occurences of RE. RE{M,N} matches between M and N occurences. Other flavours use RE\{M\} etc. Perl provides several "quote-like" operators for writing REs, including the common // form and less common ??. A comprehensive survey of regexp flavours is found in Friedl 1997 (see below). 2. Any description of a pattern composed from combinations of symbols and the three operators: Concatenation - pattern A concatenated with B matches a match for A followed by a match for B. Or - pattern A-or-B matches either a match for A or a match for B. Closure - zero or more matches for a pattern. The earliest form of regular expressions (and the term itself) were invented by mathematician Stephen Cole Kleene in the mid-1950s, as a notation to easily manipulate "regular sets", formal descriptions of the behaviour of finite state machines, in regular algebra.
  • retirement pension — income: no longer at work
  • roman congregation — any of the executive departments of the Curia Romana as the administration of the Roman Catholic Church.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?