0%

22-letter words containing g, a, m, i

  • fall prey to something — To fall prey to something bad means to be taken over or affected by it.
  • family planning clinic — a clinic that provides family planning services
  • flexible-rate mortgage — adjustable-rate mortgage.
  • 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.
  • garmisch-partenkirchen — a city in S Germany, in the Bavarian Alps.
  • 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.
  • give someone the shaft — to cheat or trick someone
  • give someone the shake — to avoid or get rid of an undesirable person (or thing)
  • give something a whirl — to attempt or give a trial to something
  • 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
  • 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.
  • graph rewriting system — An extension of a term rewriting system which uses graph reduction on terms represented by directed graphs to avoid duplication of work by sharing expressions.
  • guest services manager — A guest services manager at a hotel is responsible for the services and facilities that the hotel provides for its guests.
  • gum bichromate process — a contact printing method in which the image is formed on a coating of sensitized gum containing a suitable colored pigment and potassium or ammonium dichromate.
  • hemorrhagic septicemia — an acute infectious disease of animals, caused by the bacterium Pasteurella multocida, and characterized by fever, catarrhal symptoms, pneumonia, and general blood infection.
  • hermann-mauguin symbol — a notation for indicating a particular point group.
  • home improvement grant — a government grant for house improvements such as insulation, adding a bathroom, or urgent repairs
  • 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-making compartment — a part of a refrigerator in which ice is made
  • immigration department — the government department responsible for laws regarding immigrants and immigration
  • imperative programming — imperative language
  • indeterminate cleavage — the division of an egg into cells, each of which has the potential of developing into a complete organism
  • information management — The planning, budgeting, control and exploitation of the information resources in an organisation. The term encompasses both the information itself and the related aspects such as personnel, finance, marketing, organisation and technologies and systems. Information Managers are responsible for the coordination and integration of a wide range of information handling activities within the organisation. These include the formulation of corporate information policy, design, evaluation and integration of effective information systems and services, the exploitation of IT for competitive advantage and the integration of internal and external information and data.
  • 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.
  • 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.
  • international telegram — a telemessage sent from the UK to a foreign country
  • katharine meyer grahamKatharine Meyer, 1917–2001, U.S. newspaper publisher.
  • large magellanic cloud — a satellite galaxy of our own Milky Way galaxy, appearing as a hazy cloud in the southern constellations Dorado and Mensa.
  • limited access highway — expressway
  • magnetic concentration — beneficiation of crushed ore in which a magnetic mineral is separated from gangue by means of a magnetic field.
  • magnetic dipole moment — a measure of the magnetic strength of a magnet or current-carrying coil, expressed as the torque per unit magnetic-flux density produced when the magnet or coil is set with its axis perpendicular to the 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.
  • make a big deal out of — to attach extreme importance to; make a big fuss about
  • manufacturing industry — the industry of manufacturing goods from raw materials
  • marketing intelligence — information about markets that can be used in marketing
  • martin luther king day — the third Monday in January, a legal holiday in some states of the U.S., commemorating the birthday (Jan. 15) of Martin Luther King, Jr.
  • mechanical engineering — the branch of engineering dealing with the design and production of machinery.
  • memory management unit — (hardware, memory management)   (MMU, "Paged Memory Management Unit", PMMU) A hardware device or circuit that supports virtual memory and paging by translating virtual addresses into physical addresses. The virtual address space (the range of addresses used by the processor) is divided into pages, whose size is 2^N, usually a few kilobytes. The bottom N bits of the address (the offset within a page) are left unchanged. The upper address bits are the (virtual) page number. The MMU contains a page table which is indexed (possibly associatively) by the page number. Each page table entry (PTE) gives the physical page number corresponding to the virtual one. This is combined with the page offset to give the complete physical address. A PTE may also include information about whether the page has been written to, when it was last used (for a least recently used replacement algorithm), what kind of processes (user mode, supervisor mode) may read and write it, and whether it should be cached. It is possible that no physical memory (RAM) has been allocated to a given virtual page, in which case the MMU will signal a "page fault" to the CPU. The operating system will then try to find a spare page of RAM and set up a new PTE to map it to the requested virtual address. If no RAM is free it may be necessary to choose an existing page, using some replacement algorithm, and save it to disk (this is known as "paging"). There may also be a shortage of PTEs, in which case the OS will have to free one for the new mapping. In a multitasking system all processes compete for the use of memory and of the MMU. Some memory management architectures allow each process to have its own area or configuration of the page table, with a mechanism to switch between different mappings on a process switch. This means that all processes can have the same virtual address space rather than require load-time relocation. An MMU also solves the problem of fragmentation of memory. After blocks of memory have been allocated and freed, the free memory may become fragmented (discontinuous) so that the largest contiguous block of free memory may be much smaller than the total amount. With virtual memory, a contiguous range of virtual addresses can be mapped to several non-contiguous blocks of physical memory. In early designs memory management was performed by a separate integrated circuit such as the MC 68851 used with the Motorola 68020 CPU in the Macintosh II or the Z8015 used with the Zilog Z80 family of processors. Later CPUs such as the Motorola 68030 and the ZILOG Z280 have MMUs on the same IC as the CPU.
  • miguel primo de rivera — Diego [dye-gaw] /ˈdyɛ gɔ/ (Show IPA), 1886–1957, Mexican painter.
  • miscarriage of justice — law: wrongful judgement
  • missing persons bureau — the part of the Police Force dealing with tracing missing people
  • monday morning disease — azoturia (def 2).
  • most significant digit — the digit farthest to the left in a number. Abbreviation: MSD.
  • mpeg-2 aac low profile — (compression, standard, algorithm, file format)   A successor of MP3 allowing transparent coding at data rates of 75-80% of that of MP3. It is very different from MP3, only used MDCT, no subband coding.
  • mpeg-2.5 audio layer 3 — (compression, standard, algorithm, file format)   A non-standard extention of MPEG-2 audio layer 3 by FhG for lowest sampling rates (8-12 kHz) targeting bit rates from 16-32 kbps (possibly 8-160 kbps).
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?