0%

18-letter words containing t, i, l, u

  • national insurance — In Britain, national insurance is the state system of paying money to people who are ill, unemployed, or retired. It is financed by money that the government collects from people who work, or from their employers.
  • natural childbirth — childbirth involving little or no use of drugs or anesthesia and usually involving a program in which the mother is psychologically and physically prepared for the birth process.
  • natural convection — Natural convection is the loss of heat from a hot solid or liquid into air which is not artificially agitated.
  • natural philosophy — natural science.
  • natural resistance — natural immunity.
  • naval architecture — the science of designing ships and other waterborne craft.
  • nebular hypothesis — the theory that the solar system evolved from a mass of nebular matter: prominent in the 19th century following its precise formulation by Laplace.
  • needlestick injury — an injury that is caused by accidentally pricking the skin with a hypodermic needle
  • neovascularization — the development of new blood vessels, especially in tissues where circulation has been impaired by trauma or disease.
  • netherlands guiana — a former name of Suriname.
  • neuroleptanalgesia — a semiconscious nonreactive state induced by certain drug combinations, as fentanyl with droperidol.
  • neutrosophic logic — (logic)   (Or "Smarandache logic") A generalisation of fuzzy logic based on Neutrosophy. A proposition is t true, i indeterminate, and f false, where t, i, and f are real values from the ranges T, I, F, with no restriction on T, I, F, or the sum n=t+i+f. Neutrosophic logic thus generalises: - intuitionistic logic, which supports incomplete theories (for 0100 and i=0, with both t,f<100); - dialetheism, which says that some contradictions are true (for t=f=100 and i=0; some paradoxes can be denoted this way). Compared with all other logics, neutrosophic logic introduces a percentage of "indeterminacy" - due to unexpected parameters hidden in some propositions. It also allows each component t,i,f to "boil over" 100 or "freeze" under 0. For example, in some tautologies t>100, called "overtrue".
  • ninety-ninety rule — (humour)   "The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time". An aphorism attributed to Tom Cargill of Bell Labs, and popularised by Jon Bentley's September 1985 "Bumper-Sticker Computer Science" column in "Communications of the ACM". It was there called the "Rule of Credibility", a name which seems not to have stuck.
  • no laughing matter — sth serious
  • no-fault insurance — Also called no-fault insurance. a form of automobile insurance designed to enable the policyholder in case of an accident to collect a certain basic compensation promptly for economic loss from his or her own insurance company without determination of liability.
  • nocturnal emission — the release of semen during sleep, often during a sexual dream.
  • non-accountability — the state of being accountable, liable, or answerable.
  • non-circumstantial — of pertaining to, or derived from circumstances: a circumstantial result.
  • non-contextualized — to put (a linguistic element, an action, etc.) in a context, especially one that is characteristic or appropriate, as for purposes of study.
  • non-fundamentalist — (sometimes initial capital letter) a religious movement characterized by a strict belief in the literal interpretation of religious texts, especially within American Protestantism and Islam.
  • nonpartisan league — a political organization of farmers, founded in North Dakota in 1915, and extending to many states west of the Mississippi, with the aim of influencing agricultural legislation in state legislatures.
  • nonstriated muscle — smooth muscle
  • now you're talking — at last you're saying something agreeable
  • nuclear capability — If a country has nuclear capability, it is able to produce nuclear power and usually nuclear weapons.
  • numerical aperture — a measure of the resolving power of a microscope, equal to the index of refraction of the medium in which the object is placed multiplied by the sine of the angle made with the axis by the most oblique ray entering the instrument, the resolving power increasing as the product increases. Abbreviation: N.A.
  • numerical identity — the relation that holds between two relata when they are the selfsame entity, that is, when the terms designating them have the same reference
  • numerical taxonomy — classification of organisms by a comparison of large numbers of observable characteristics that are given equal value instead of being weighted according to possible evolutionary significance.
  • nursery facilities — places where young children are looked after
  • objective modula-2 — (language)   (Or "ObjM2") An extension to Modula-2 for Cocoa and GNUstep software development. Objective Modula-2 follows the Objective-C object model and retains the bracketed Smalltalk message passing syntax used in Objective-C. Classes written in ObjM2 can be used within ObjC and vice versa. ObjM2 also retains Modula-2's data encapsulation features, namely nested modules with explicit import and export lists. Due to the strict type checking in Modula-2, ObjM2 can be considered a much safer programming language than is ObjC, yet losing none of the capabilities of ObjC.
  • oblique projection — something that is oblique.
  • oblique-slip fault — a fault on which the movement is along both the strike and the dip of the fault
  • occupational group — An occupational group is a category used by insurance companies to classify jobs according to how hazardous they are.
  • october revolution — Russian Revolution (def 2).
  • oedipus at colonus — a tragedy by Sophocles, written toward the end of his life and produced posthumously in 401? b.c.
  • oil of catechumens — holy oil used in baptism, the ordination of a cleric, the coronation of a sovereign, or in the consecration of a church.
  • old curiosity shop — a novel (1840–41) by Dickens.
  • on automatic pilot — If you are on automatic pilot or on autopilot, you are acting without thinking about what you are doing, usually because you have done it many times before.
  • on delicate ground — in a situation requiring tact
  • optical soundtrack — the final soundtrack on a motion picture, which appears as a band of black and white serrations along a strip of film to the left of the composite print. Light is shined through the serrations and is converted to audible sound.
  • optimum population — a population that is sufficiently large to provide an adequate workforce with minimal unemployment
  • order of australia — an order awarded to Australians for outstanding achievement or for service to Australia or to humanity at large; established in 1975
  • out of circulation — If someone is out of circulation, they do not appear in public or at social gatherings for a period of time. You can also say that someone is out of circulation when they are in prison.
  • parallel computing — parallel processing
  • 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.
  • particular average — a loss at sea, as through accident or negligence, that is borne solely by the owner of the lost property. Abbreviation: P.A.
  • particulate filter — A particulate filter is a filter to remove particles that are present the air, for example in the exhaust of a diesel engine.
  • particulate matter — Particulate matter is solid or liquid particles in the air, which are measured in PM-10 units and are particles with a diameter of ten micrometers or less.
  • passing modulation — a modulation of a temporary nature.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?