0%

22-letter words containing u, l, o

  • comparative literature — the comparative study of various national literatures, stressing their influence one upon another, their use of similar forms, their treatment of similar themes, etc.
  • comparative musicology — ethnomusicology.
  • complete quadrilateral — a polygon consisting of four lines and their six points of intersection
  • compound annual return — the total return available from an investment, deposit, etc, when the interest earned is used to augment the capital
  • compulsory liquidation — the liquidation of a business in order to settle its debts
  • computational geometry — (mathematics)   The study of algorithms for combinatorial, topological, and metric problems concerning sets of points, typically in Euclidean space. Representative areas of research include geometric search, convexity, proximity, intersection, and linear programming.
  • computational learning — grammatical inference
  • constitutional monarch — the sovereign in a constitutional monarchy
  • constructive dismissal — If an employee claims constructive dismissal, they begin a legal action against their employer in which they claim that they were forced to leave their job because of the behaviour of their employer.
  • contextual advertising — a form of targeted advertising used on websites or other media, such as content displayed in mobile browsers
  • continuous welded rail — a long, continuous rail formed by welding many short rails.
  • conversational quality — (in public speaking) a manner of utterance that resembles the spontaneity and informality of relaxed personal conversation.
  • corporate manslaughter — the death of someone caused by an act of corporate negligence
  • counterrevolutionaries — Plural form of counterrevolutionary.
  • course author language — (language)   (CAL) The CAI language for the IBM 360.
  • curdle someone's blood — to fill someone with fear
  • curly-coated retriever — a strongly built variety of retriever with a tightly curled black or liver-coloured coat
  • curriculum coordinator — a member of a teaching staff with a largely administrative function whose job is to ensure that a curriculum is effectively taught
  • cut a long story short — to leave out details in a narration
  • cut someone some slack — to be less demanding of someone; ease up on someone
  • cyclic redundancy code — cyclic redundancy check
  • dehiwala-mount lavinia — a city in SW Sri Lanka, on the Indian Ocean.
  • deinstitutionalisation — Alternative spelling of deinstitutionalization.
  • deinstitutionalization — to release (a person with mental or physical disabilities) from a hospital, asylum, home, or other institution with the intention of providing treatment, support, or rehabilitation primarily through community resources under the supervision of health-care professionals or facilities.
  • delaunay triangulation — (mathematics, graphics)   (After B. Delaunay) For a set S of points in the Euclidean plane, the unique triangulation DT(S) of S such that no point in S is inside the circumcircle of any triangle in DT(S). DT(S) is the dual of the voronoi diagram of S.
  • delayed-action shutter — a camera shutter that opens after an interval set by the photographer
  • deoxyribonucleoprotein — any of a class of nucleoproteins that yield DNA upon partial hydrolysis.
  • diachronic linguistics — historical linguistics.
  • dilation and curettage — a surgical method for the removal of diseased tissue or an early embryo from the lining of the uterus by means of scraping.
  • direct public offering — A direct public offering is stock offered directly for sale to investors by a company without the use of underwriters or brokers.
  • don't hold your breath — sth is unlikely to happen soon
  • double blackwall hitch — a kind of knot
  • drive-through delivery — childbirth after which the mother has a very brief hospital stay.
  • drumhead court-martial — a court-martial held, usually on a battlefield, for the summary trial of charges of offenses committed during military operations.
  • educational psychology — a branch of psychology concerned with developing effective educational techniques and dealing with psychological problems in schools.
  • educational technology — the use of technology, such as computers, within education, to aid the learning process
  • educational television — television of informational or instructional content.
  • engineering consultant — a consultant specializing in engineering
  • estimated maximum loss — Estimated maximum loss is the amount of risk that an underwriter estimates the insurer will be able to cover before ceding any surplus to a reinsurer.
  • evolutionary algorithm — (EA) An algorithm which incorporates aspects of natural selection or survival of the fittest. An evolutionary algorithm maintains a population of structures (usually randomly generated initially), that evolves according to rules of selection, recombination, mutation and survival, referred to as genetic operators. A shared "environment" determines the fitness or performance of each individual in the population. The fittest individuals are more likely to be selected for reproduction (retention or duplication), while recombination and mutation modify those individuals, yielding potentially superior ones. EAs are one kind of evolutionary computation and differ from genetic algorithms. A GA generates each individual from some encoded form known as a "chromosome" and it is these which are combined or mutated to breed new individuals. EAs are useful for optimisation when other techniques such as gradient descent or direct, analytical discovery are not possible. Combinatoric and real-valued function optimisation in which the optimisation surface or fitness landscape is "rugged", possessing many locally optimal solutions, are well suited for evolutionary algorithms.
  • extension language kit — (language)   (Elk) A Scheme interpreter by Oliver Laumann <[email protected]> and Carsten Bormann <[email protected]> of the Technical University of Berlin. Elk was designed to be used as a general extension language. New types and primitive procedures can easily be added. It has first-class environments, dynamic-wind, fluid-let, macros, autoloading and a dump. It provides interfaces to Xlib, Xt and various widget sets; dynamic loading of extensions and object files; almost all artificial limitations removed; generational/incremental garbage collector; Unix system call extensions; Records (structures) and bit strings. Version: 2.2 is mostly R3RS compatible and runs on Unix, Ultrix, VAX, Sun-3, Sun-4, 68000, i386, MIPS, IBM PC RT, RS/6000, HP700, SGI, Sony, MS-DOS (gcc+DJGPP or go32).
  • federal crop insurance — insurance against the failure of certain crops provided to farmers and producers by the Federal Government
  • federal district court — district court (def 2).
  • flocculent precipitate — a woolly-looking precipitate, as aluminum hydroxide formed by the addition of ammonia to an aluminum-salt solution.
  • flushed with something — very excited because of some success or triumph
  • for a laugh/for laughs — If you do something for a laugh or for laughs, you do it as a joke or for fun.
  • forced place insurance — Forced place insurance is insurance taken out by a bank or creditor on an uninsured debtor's behalf on a property that is being used as collateral.
  • four-hundred-day clock — a clock that needs to be wound once a year, having the works exposed under a glass dome and utilizing a torsion pendulum.
  • friar minor conventual — a friar belonging to a branch of the Franciscan order that separated from the Observants in the 15th century, and that observes a modification of the rule of St. Francis. Also called Conventual. Compare Friar Minor, capuchin (def 4).
  • functional programming — (programming)   (FP) A program in a functional language consists of a set of (possibly recursive) function definitions and an expression whose value is output as the program's result. Functional languages are one kind of declarative language. They are mostly based on the typed lambda-calculus with constants. There are no side-effects to expression evaluation so an expression, e.g. a function applied to certain arguments, will always evaluate to the same value (if its evaluation terminates). Furthermore, an expression can always be replaced by its value without changing the overall result (referential transparency). The order of evaluation of subexpressions is determined by the language's evaluation strategy. In a strict (call-by-value) language this will specify that arguments are evaluated before applying a function whereas in a non-strict (call-by-name) language arguments are passed unevaluated. Programs written in a functional language are generally compact and elegant, but have tended, until recently, to run slowly and require a lot of memory. Examples of purely functional languages are Clean, FP, Haskell, Hope, Joy, LML, Miranda, and SML. Many other languages such as Lisp have a subset which is purely functional but also contain non-functional constructs. See also lazy evaluation, reduction.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?