0%

22-letter words containing i, c, o, n, g, r

  • engineering consultant — a consultant specializing in engineering
  • english cocker spaniel — any of a breed of small spaniel, similar to and the progenitor of the cocker spaniel
  • fitzgerald contraction — the hypothesis that a moving body exhibits a contraction in the direction of motion when its velocity is close to the speed of light.
  • floating exchange rate — a system in which the value of a currency fluctuates against other currencies in accordance with market forces
  • 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.
  • galvanic skin response — a change in the electrical conductivity of the skin caused by an emotional reaction to a stimulus.
  • 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.
  • genitourinary medicine — the branch of medical science concerned with the study and treatment of diseases of the genital and urinary organs, esp sexually transmitted diseases
  • geographic determinism — a doctrine that regards geographical conditions as the determining or molding agency of group life.
  • geometric distribution — the distribution of the number, x, of independent trials required to obtain a first success: where the probability in each is p, the probability that x = r is p(1-p)r–1, where r = 1, 2, 3, …, with mean 1/p
  • gloria in excelsis deo — the hymn beginning, in Latin, Gloria in Excelsis Deo, “Glory in the highest to God,” and in the English version, “Glory be to God on high.”.
  • golden-crowned kinglet — a yellowish-green kinglet, Regulus satrapa, of North America, having a yellow or orange patch on the top of the head.
  • government corporation — a corporation set up by a national government to carry out business transactions on its behalf
  • 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.
  • 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
  • highway contract route — a route for carrying mail over the highway between designated points, given on contract to a private carrier and often requiring, in rural areas, delivery to home mailboxes. Abbreviation: HCR.
  • historical linguistics — the study of changes in a language or group of languages over a period of time.
  • 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.
  • ice-making compartment — a part of a refrigerator in which ice is made
  • industrial archaeology — the study of past industrial machines, works, etc
  • information processing — processing of information, especially the handling of information by computers in accordance with strictly defined systems of procedure.
  • 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.
  • 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.
  • large magellanic cloud — a satellite galaxy of our own Milky Way galaxy, appearing as a hazy cloud in the southern constellations Dorado and Mensa.
  • 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.
  • local exchange carrier — (communications)   (LEC) A company allowed to handle local calls following the break-up of the Bell system in the US by anti-trust regulators. These vary from Regional Bell Operating Companies (RBOC) through to small independents such as Farmers Cooperative. Local exchange carriers are not allowed to handle long-distance traffic. This is handled by inter-exchange carriers (IXC) who are not allowed to handle local calls.
  • lord high commissioner — the Queen's representative
  • magnetic concentration — beneficiation of crushed ore in which a magnetic mineral is separated from gangue by means of a magnetic field.
  • magnetic pole strength — Electricity. a measure of the force exerted by one face of a magnet on a face of another magnet when both magnets are represented by equal and opposite poles. Symbol: m.
  • motoring correspondent — a journalist who reviews and writes about cars
  • negative reinforcement — form of conditioning
  • neighborhood bike code — (humour, programming)   A piece of code that every programmer at the company has touched.
  • no room to swing a cat — If you say 'There's no room to swing a cat' or 'You can't swing a cat', you mean that the place you are talking about is very small or crowded.
  • non-euclidean geometry — geometry based upon one or more postulates that differ from those of Euclid, especially from the postulate that only one line may be drawn through a given point parallel to a given line.
  • nondestructive testing — any of several methods of detecting flaws in metals without causing damage. The most common techniques involve the use of X-rays, gamma rays, and ultrasonic vibrations
  • nonterminating decimal — a decimal numeral that does not end in an infinite sequence of zeros (contrasted with terminating decimal).
  • object-oriented design — (programming)   (OOD) A design method in which a system is modelled as a collection of cooperating objects and individual objects are treated as instances of a class within a class hierarchy. Four stages can be identified: identify the classes and objects, identify their semantics, identify their relationships and specify class and object interfaces and implementation. Object-oriented design is one of the stages of object-oriented programming.
  • object-oriented turing — (language)   An extension of Turing and a replacement for Turing Plus by R.C. Holt <[email protected]>, U Toronto, 1991. Object-Oriented Turing supports imperative programming, object-oriented programming and concurrent programming. It has modules, classes, single inheritance, processes, exception handling and optional machine-dependent programming. There is an integrated environment under the X Window System and a demo version. Versions exist for Sun-4, MIPS, RS-6000 and others. E-mail: <[email protected]>.
  • office of fair trading — a government department established in the UK in 1973, which acts as an economic regulator, responsible for ensuring fairness in consumer protection and competition law
  • open network computing — (ONC) Sun's network protocols.
  • operating instructions — instructions on how to use something (such an electrical appliance, etc)
  • organizational culture — the customs, rituals, and values shared by the members of an organization that have to be accepted by new members
  • otorhinolaryngological — of or relating to the medical practice involving the ear, nose, and throat.
  • packet internet groper — ping
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?