0%

22-letter words containing g, e, r, o

  • 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.
  • hague peace conference — a meeting held at The Hague, Netherlands, in 1899, that established The Hague Permanent Court of Arbitration.
  • 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.
  • 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.
  • hit the ground running — begin enthusiastically
  • hold the purse stringshold the purse strings, to have the power to determine how money shall be spent.
  • home improvement grant — a government grant for house improvements such as insulation, adding a bathroom, or urgent repairs
  • homologous chromosomes — two chromosomes, one of paternal origin, the other of maternal origin, that are identical in appearance and pair during meiosis
  • 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.
  • hydrogen embrittlement — the weakening of metal by the sorption of hydrogen during a pickling process, such as that used in plating
  • 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
  • in on the ground floor — in at the beginning (of a business, etc.) and thus in an especially advantageous position
  • in the neighborhood of — the area or region around or near some place or thing; vicinity: the kids of the neighborhood; located in the neighborhood of Jackson and Vine streets.
  • industrial archaeology — the study of past industrial machines, works, etc
  • 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.
  • 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.
  • international telegram — a telemessage sent from the UK to a foreign country
  • interrogator-responsor — a radio or radar transceiver for sending a signal to a transponder and receiving and interpreting the reply.
  • judge advocate general — the chief legal officer of an army, navy, or air force.
  • keep a person guessing — to let a person remain in a state of uncertainty
  • kill yourself laughing — If you say that you killed yourself laughing, you are emphasizing that you laughed a lot because you thought something was extremely funny.
  • 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.
  • land of the rising sun — Japan.
  • large magellanic cloud — a satellite galaxy of our own Milky Way galaxy, appearing as a hazy cloud in the southern constellations Dorado and Mensa.
  • law enforcement agency — an organization responsible for enforcing the law, such as a police or sheriff department
  • 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.
  • 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.
  • lesser spotted dogfish — a small spotted European shark, Scyliorhinus caniculus
  • 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.
  • make one's marble good — to succeed or do the right thing
  • mecklenburg-vorpommern — German name of Mecklenburg–Western Pomerania.
  • 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).
  • motoring correspondent — a journalist who reviews and writes about cars
  • 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).
  • negative reinforcement — form of conditioning
  • neighborhood bike code — (humour, programming)   A piece of code that every programmer at the company has touched.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?