0%

22-letter words containing t, o, l, c

  • 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).
  • frictional electricity — static electricity generated by friction
  • 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.
  • 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.
  • gastrointestinal tract — organs of digestion
  • generalized coordinate — Usually, generalized coordinates. one of a minimum set of coordinates needed to specify the state or position of a given system.
  • give someone the flick — to dismiss someone from consideration
  • glucose tolerance test — a diagnostic procedure in which a measured amount of glucose is ingested and blood samples are taken periodically as a means of detecting diabetes mellitus.
  • gold-exchange standard — a monetary system in one country in which currency is maintained at a par with that of another country that is on the gold standard.
  • golden-crowned kinglet — a yellowish-green kinglet, Regulus satrapa, of North America, having a yellow or orange patch on the top of the head.
  • 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
  • gravitational collapse — the final stage of stellar evolution in which a star collapses to a final state, as a white dwarf, neutron star, or black hole, when the star's nuclear reactions no longer generate enough pressure to balance the attractive force of gravity.
  • gravitational constant — constant of gravitation. See under law of gravitation.
  • great glen of scotland — Glen More
  • greystone technologies — (company)   The producers of the GT/M MUMPS compiler and GT/SQL pre-processor for VAX and DEC Alpha.
  • gross national product — the total monetary value of all final goods and services produced in a country during one year. Abbreviation: GNP.
  • gulf of saint lawrence — a deep arm of the Atlantic off the E coast of Canada between Newfoundland and the mainland coasts of Quebec, New Brunswick, and Nova Scotia
  • halfwave rectification — a rectifier that changes only one half of a cycle of alternating current into a pulsating, direct current.
  • harvard classification — a classification of stars based on the characteristic spectral absorption lines and bands of the chemical elements present
  • heat of solidification — the heat liberated by a unit mass of liquid at its freezing point as it solidifies: equal to the heat of fusion.
  • historical linguistics — the study of changes in a language or group of languages over a period of time.
  • 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.
  • horizontal application — An application program common to different business processes, e.g. office automation. Compare vertical application.
  • horn-rimmed spectacles — spectacles with rims made of material resembling horn
  • horse of another color — an entirely different matter
  • host control interface — (hardware, wireless)   (HCI) A network layer in the Bluetooth Core Protocol Stack, lying between the software and the hardware stacks and serving as the interface through which the software controls two of Bluetooth's four core protocols.
  • hubble space telescope — U.S. Aerospace. a 7.9-foot (2.4-meter) optical telescope designed for use in orbit around the earth.
  • 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.
  • 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
  • in sackcloth and ashes — in a state of great mourning or penitence
  • incremental repetition — repetition, with variation, of a refrain or other part of a poem, especially a ballad.
  • industrial archaeology — the study of past industrial machines, works, etc
  • industrialized country — a country characterized by industry on an extensive scale
  • information technology — the development, implementation, and maintenance of computer hardware and software systems to organize and communicate information electronically. Abbreviation: IT.
  • instruction scheduling — The compiler phase that orders instructions on a pipelined, superscalar, or VLIW architecture so as to maximise the number of function units operating in parallel and to minimise the time they spend waiting for each other. Examples are filling a delay slot; interspersing floating-point instructions with integer instructions to keep both units operating; making adjacent instructions independent, e.g. one which writes a register and another which reads from it; separating memory writes to avoid filling the write buffer. Norman P. Jouppi and David W. Wall, "Available Instruction-Level Parallelism for Superscalar and Superpipelined Processors", Proceedings of the Third International Conference on Architectural Support for Programming Languages and Operating Systems, pp. 272--282, 1989.
  • interactive television — techniques that enable viewers to interact with what they are watching
  • intermetallic compound — a compound of two or more metals.
  • it's london to a brick — it is certain
  • judge advocate general — the chief legal officer of an army, navy, or air force.
  • junior sales associate — A junior sales associate is an inexperienced member of the sales staff, usually receiving training or supervised by more experienced staff.
  • kensington and chelsea — a borough of Greater London, England.
  • ketamine hydrochloride — a powerful anesthetic, C13H16ClNO·HCl, used in surgery
  • label switching router — (networking)   (LSR) A device that typically resides somewhere in the middle of a network and is capable of forwarding datagrams by label switching. In many cases, especially early versions of MPLS networks, a LSR will typically be a modified ATM switch that forwards datagrams based upon a label in the VPI/VCI field.
  • 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
  • leather-stocking tales — a series of historical novels by James Fenimore Cooper, comprising The Pioneers, The Last of the Mohicans, The Prairie, The Pathfinder, and The Deerslayer.
  • left-handed compliment — an ambiguous compliment
  • lesser cornstalk borer — the larva of a widely distributed pyralid moth, Elasmopalpus lignosellus, that damages corn and some other crops by boring into the part of the stalk close to the soil.
  • letter of introduction — a letter given by one person to another, as an introduction to a third party
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?