0%

22-letter words containing o, m, l

  • fall prey to something — To fall prey to something bad means to be taken over or affected by it.
  • fallacy of composition — the fallacy of inferring that a property of parts or members of a whole is also a property of the whole (opposed to fallacy of division).
  • federal maritime board — the body responsible for regulating commerce by US and international shipping in US waters
  • fetal alcohol syndrome — a pattern of birth defects caused by maternal consumption of alcohol during pregnancy: considered as one of the fetal alcohol spectrum disorders. Abbreviation: FAS.
  • field emission display — (hardware)   (FED) A type of flat panel display in which field emitting cathodes bombard a phosphor coating causing it to emit light. A field emission display is similar to a cathode ray tube but only a few millimeters thick. They use a large array of fine metal tips or carbon nanotubes (which are the most efficient electron emitters known), to emit electrons through a process known as field emission. Many of these are behind each phosphor dot so FEDs do not display dead pixels like LCDs even if 20% of the emitters fail. Sony is researching FED because it is the flat-panel technology that comes closest to matching the picture of a CRT.
  • flexible-rate mortgage — adjustable-rate mortgage.
  • flushed with something — very excited because of some success or triumph
  • forth modification lab — (event)   (FORML) A Forth conference held every November on the West coast of the USA ().
  • 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.
  • gallamine triethiodide — a neuromuscular blocking drug, C 30 H 60 I 3 N 3 O 3 , similar to curare, used as a skeletal muscle relaxant in conjunction with surgical anesthesia.
  • galvanomagnetic effect — any of several phenomena that occur when an electric current is passed through a conductor or semiconductor situated in a magnetic field, as the Hall effect.
  • give someone the flick — to dismiss someone from consideration
  • give something a whirl — to attempt or give a trial to something
  • go for all the marbles — to take a great risk in the hope of a great gain
  • golden needle mushroom — enoki.
  • government osi profile — (networking, standard)   (GOSIP) A subset of OSI standards specific to US Government procurements, designed to maximize interoperability in areas where plain OSI standards are ambiguous or allow excessive options.
  • graeco-roman wrestling — a style of wrestling in which the legs may not be used to obtain a fall and no hold may be applied below the waist
  • gran turismo omologato — (of an automobile) certified as conforming to the specifications, as fuel capacity and engine displacement, for a class of standard automobiles (Gran Turismo) qualified to engage in various types of competitions. Abbreviation: GTO.
  • have a whale of a time — If you say that someone is having a whale of a time, you mean that they are enjoying themselves very much.
  • hermann-mauguin symbol — a notation for indicating a particular point group.
  • historical materialism — (in Marxist theory) the doctrine that all forms of social thought, as art or philosophy, and institutions, as the family or the state, develop as a superstructure founded on an economic base; that they reflect the character of economic relations and are altered or modified as a result of class struggles; that each ruling economic class produces the class that will destroy or replace it; and that dialectical necessity requires the eventual withering away of the state and the establishment of a classless society: the body of theory, in dialectical materialism, dealing with historical process and social causation.
  • homologous chromosomes — two chromosomes, one of paternal origin, the other of maternal origin, that are identical in appearance and pair during meiosis
  • horn-rimmed spectacles — spectacles with rims made of material resembling horn
  • hospital administrator — a person who works in the management team of a hospital
  • hybrid multiprocessing — (parallel)   (HMP) The kind of multitasking which OS/2 supports. HMP provides some elements of symmetric multiprocessing, using add-on IBM software called MP/2. OS/2 SMP was planned for release in late 1993.
  • hydrocinnamic aldehyde — a colorless liquid, C 9 H 10 O, having a floral odor, used in perfumery and flavoring.
  • hydrogen embrittlement — the weakening of metal by the sorption of hydrogen during a pickling process, such as that used in plating
  • hypothetical syllogism — a hypothetical syllogism has two uses. In propositional logic it expresses one of the rules of inference, while in the history of logic, it is a short-hand for the theory of consequence
  • ice-cream parlor chair — a side chair made of heavy wire with a round wooden seat, especially for use at a table.
  • in your wildest dreams — If you say that you could not imagine a particular thing in your wildest dreams, you are emphasizing that you think it is extremely strange or unlikely.
  • incremental repetition — repetition, with variation, of a refrain or other part of a poem, especially a ballad.
  • information technology — the development, implementation, and maintenance of computer hardware and software systems to organize and communicate information electronically. Abbreviation: IT.
  • initial program loader — (operating system)   (IPL) A bootstrap loader which loads the part of an operating system needed to load the remainder of the operating system.
  • intentionally homeless — without anywhere to leave because one has left accommodation voluntarily
  • intermetallic compound — a compound of two or more metals.
  • international air mile — a unit of distance at sea or in the air equal to 1.852 kilometers.
  • international telegram — a telemessage sent from the UK to a foreign country
  • ketamine hydrochloride — a powerful anesthetic, C13H16ClNO·HCl, used in surgery
  • klinefelter's syndrome — an abnormal condition in which at least one extra X chromosome is present in a male: characterized by reduced or absent sperm production, small testicles, and in some cases enlarged breasts.
  • knowledge-based system — (artificial intelligence)   (KBS) A program for extending and/or querying a knowledge base. The related term expert system is normally used to refer to a highly domain-specific type of KBS used for a specialised purpose such as medical diagnosis. The Cyc project is an example of a large KBS.
  • land of milk and honey — a land of unusual fertility and abundance.
  • large magellanic cloud — a satellite galaxy of our own Milky Way galaxy, appearing as a hazy cloud in the southern constellations Dorado and Mensa.
  • last call optimisation — (programming)   (Or "tail call optimisation") Discarding the immediate calling context (call stack frame) when the last action of a function or procedure, A, is to call another function or procedure, B. B will then return directly to A's caller, or possibly further up the call stack if the optimisation has been applied to several consecutive calls. Last call optimisation allows arbitrarily deep nesting of procedure calls without consuming memory to store useless environments. This is particularly useful in the special case of tail recursion optimisation, where a procedure's last action is to call itself (possibly indirectly).
  • law enforcement agency — an organization responsible for enforcing the law, such as a police or sheriff department
  • law of excluded middle — the principle that any proposition must be either true or false.
  • league of women voters — a nonpartisan organization that works toward improving the political process: created in 1920 to inform women on public issues. Abbreviation: LWV.
  • left-handed compliment — an ambiguous compliment
  • lempel-ziv compression — Substitutional compression schemes proposed by Jakob Ziv and Abraham Lempel in 1977 and 1978. There are two main schemes, LZ77 and LZ78. Lempel-Ziv Welch compression is a variant of LZ78.
  • liberal democrat party — The Liberal Democrat Party is the third largest political party in Britain and the main centre party. It believes in improving the constitution and the voting system and in providing good welfare services.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?