0%

22-letter words containing nt

  • letter of introduction — a letter given by one person to another, as an introduction to a third party
  • little lord fauntleroy — (italics) a children's novel (1886) by Frances H. Burnett.
  • lorentz transformation — the mathematical transformation in the special theory of relativity that describes the way in which measurements of space, time, and other physical quantities differ for two observers in uniform relative motion.
  • 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
  • make contact (with sb) — If you make contact with someone, you find out where they are and talk or write to them.
  • make/prove one's point — If you make your point or prove your point, you prove that something is true, either by arguing about it or by your actions or behaviour.
  • management consultancy — a company of professionals who are employed to help an organization improve efficiency and performance
  • marketing intelligence — information about markets that can be used in marketing
  • master warrant officer — a noncommissioned officer in the Canadian forces junior to a chief warrant officer
  • mechanical ventilation — life-support provided by respirator
  • 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.
  • message transfer agent — (messaging)   (MTA, Mail Transfer Agent) Any program responsible for delivering e-mail messages. Upon receiving a message from a Mail User Agent or another MTA, often by SMTP over the Internet, it stores it temporarily locally and analyses the recipients and delivers it to any local addressees and/or forwards it to other remote MTAs (routing) for delivery to remote recipients. In either case it may edit and/or add to the message headers. The most widely used MTA for Unix is sendmail, which communicates using SMTP.
  • metasyntactic variable — (grammar)   Strictly, a variable used in metasyntax, but often used for any name used in examples and understood to stand for whatever thing is under discussion, or any random member of a class of things under discussion. The word foo is the canonical example. To avoid confusion, hackers never (well, hardly ever) use "foo" or other words like it as permanent names for anything. In filenames, a common convention is that any filename beginning with a metasyntactic-variable name is a scratch file that may be deleted at any time. To some extent, the list of one's preferred metasyntactic variables is a cultural signature. They occur both in series (used for related groups of variables or objects) and as singletons. Here are a few common signatures: bazola, ztesch: Stanford (from mid-'70s on). zxc, spqr, wombat: Cambridge University (England). shme: Berkeley, GeoWorks, Ingres. Pronounced /shme/ with a short /e/. blarg, wibble: New Zealand Of all these, only "foo" and "bar" are universal (and baz nearly so). The compounds foobar and "foobaz" also enjoy very wide currency. Some jargon terms are also used as metasyntactic names; barf and mumble, for example. See also Commonwealth Hackish for discussion of numerous metasyntactic variables found in Great Britain and the Commonwealth.
  • middle atlantic states — the states of New York, Pennsylvania, and New Jersey
  • most significant digit — the digit farthest to the left in a number. Abbreviation: MSD.
  • motoring correspondent — a journalist who reviews and writes about cars
  • mountain standard time — one of the standard times used in North America, seven hours behind Greenwich Mean Time
  • negative reinforcement — form of conditioning
  • network interface card — network interface controller
  • network node interface — (networking)   (NNI) The ATM Forum's specification for connections between network nodes. NNI makes network routing possible. It typically refers to backbone trunk connections between ATM switching equipment. See also: UNI.
  • non-maskable interrupt — (NMI) An IRQ 7 on the PDP-11 or 680x0 or the NMI line on an 80x86. In contrast with a priority interrupt (which might be ignored, although that is unlikely), an NMI is *never* ignored.
  • nonmonetary advantages — the beneficial aspects of an employment, such as the stimulation of the work, attractiveness of the workplace, or its nearness to one's home, that do not reflect its financial remuneration
  • nonrepresentationalism — not resembling or portraying any object in physical nature: a nonrepresentational painting.
  • nonterminating decimal — a decimal numeral that does not end in an infinite sequence of zeros (contrasted with terminating decimal).
  • north atlantic current — an ocean current flowing NE toward the British Isles, formed by the convergence of the Gulf Stream and the Labrador Current SE of Newfoundland.
  • not be sb's department — If you say that a task or area of knowledge is not your department, you mean that you are not responsible for it or do not know much about it.
  • 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 pascal — Object Pascal
  • 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]>.
  • packet internet groper — ping
  • parliamentary election — an election to select the members of a national parliament
  • percussive maintenance — (jargon)   The fine art of whacking a device to get it working, possibly using a fine adjuster.
  • play into the hands of — a dramatic composition or piece; drama.
  • point of sale terminal — the store, dealer, or other retail outlet where an item is sold: from manufacturer to point-of-sale.
  • point-of-sale terminal — the store, dealer, or other retail outlet where an item is sold: from manufacturer to point-of-sale.
  • positive reinforcement — encouragement
  • post office department — former name of United States Postal Service.
  • preventive maintenance — (PM) To bring down a machine for inspection or test purposes. See provocative maintenance, scratch monkey.
  • primary rate interface — (PRI) A type of ISDN connection. In North America and Japan, this consists of 24 channels, usually divided into 23 B channels and 1 D channel, and runs over the same physical interface as T1. Elsewhere the PRI has 31 user channels, usually divided into 30 B channels and 1 D channel and is based on the E1 interface. PRI is typically used for connections such as one between a PBX (private branch exchange, a telephone exchange operated by the customer of a telephone company) and a CO (central office, of the telephone company) or IXC (inter exchange carrier, a long distance telephone company).
  • probationary assistant — a teacher in the first probationary years
  • procurement department — the department of (a company, organization, etc) responsible for purchasing and buying
  • productivity agreement — an agreement whereby the employees of an organization agree to changes which are intended to improve productivity in return for an increase in pay or other benefits
  • protestant reformation — reformation (def 2).
  • put out of countenance — to cause to lose composure; embarrass; disconcert
  • quantitative character — a character or trait that is transmitted by quantitative inheritance.
  • quantum chromodynamics — a quantum field theory that describes quarks and gluons and their interactions, with the color of the quarks playing a role analogous to that of electric charge. Abbreviation: QCD. Also called chromodynamics. Compare color (def 18).
  • rapid deployment force — a U.S. military organization consisting of one Marine division and four Army divisions, established in 1979 to respond quickly to any distant threat to national interests.
  • recruitment consultant — A recruitment consultant is a person or service that helps professional people to find work by introducing them to potential employers.
  • replacement cost basis — Replacement cost basis is a method of valuing insured property in which the cost of replacing property is calculated without a reduction for depreciation.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?