0%

22-letter words containing t, u, n, i

  • i don't know about you — You can say 'I don't know about you' to indicate that you are going to give your own opinion about something and you want to find out if someone else feels the same.
  • in (or out of) office — currently holding (or not holding) power or a particular position of authority
  • in on the ground floor — in at the beginning (of a business, etc.) and thus in an especially advantageous position
  • in one's birthday suit — naked; nude
  • in your wildest dreams — If you say that you could not imagine a particular thing in your wildest dreams, you are emphasizing that you think it is extremely strange or unlikely.
  • inconsistent equations — two or more equations impossible to satisfy by any one set of values for the variables (Ex.: x + y = 1 and x + y = 2)
  • independent suspension — an automotive suspension system in which each wheel is attached to the frame independently, so that a road bump affecting one wheel has no effect on the others.
  • industrial archaeology — the study of past industrial machines, works, etc
  • industrial engineering — engineering applied to the planning, design, and control of industrial operations.
  • industrialized country — a country characterized by industry on an extensive scale
  • infinitesimal calculus — the differential calculus and the integral calculus, considered together.
  • 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.
  • intel literature sales — Address: PO Box 58130, Santa Clara, CA 95052, USA. Telephone: +1 800 548 4725.
  • interactive courseware — (ICW) A training program controlled by a computer that relies on trainee input to determine the order and pace of instruction delivery. The trainee advances through the sequence of instructional events by making decisions and selections. The instruction branches according to the trainee's responses. ICW is a US military term which includes computer-aided instruction and computer-based training.
  • intermediate frequency — the middle frequency in a superheterodyne receiver, at which most of the amplification takes place. Abbreviation: if.
  • intermetallic compound — a compound of two or more metals.
  • investigative new drug — a regulatory classification assigned by the U.S. Food and Drug Administration to an unproven drug, allowing its use in approved studies with human patients. Abbreviation: IND.
  • islamic fundamentalism — the belief or advocating of a conservative adherence to literal or traditional interpretations of the Qu'ran and the Sunnah
  • isthmus of tehuantepec — the narrowest part of S Mexico, with the Bay of Campeche on the north coast and the Gulf of Tehuantepec (an inlet of the Pacific) on the south coast
  • java community process — (project)   (JCP) An organization controlled by Sun Microsystems to further the growth of the Java language and runtime. The JCP produces standards called Java Standard Requests, which are "requests" in the same sense as RFCs.
  • joint density function — a function of two or more random variables from which can be obtained a single probability that all the variables in the function will take specified values or fall within specified intervals
  • jump in with both feet — to enter into an activity or venture wholeheartedly
  • jump out of one's skin — to be very startled
  • junior sales associate — A junior sales associate is an inexperienced member of the sales staff, usually receiving training or supervised by more experienced staff.
  • justification by works — the belief that a person becomes just before God by the performance of good works: the doctrine against which Luther protested in inaugurating the Protestant Reformation.
  • 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.
  • lady's not for burning — a verse play (1948) by Christopher Fry.
  • land of the rising sun — Japan.
  • landscape architecture — the art of arranging or modifying the features of a landscape, an urban area, etc., for aesthetic or practical reasons.
  • letter of introduction — a letter given by one person to another, as an introduction to a third party
  • linear induction motor — an electric motor in which a movable part moves in a straight line, with power being supplied by a varying magnetic field set up by a fixed part of the system, as a metal rail on the ground.
  • little lord fauntleroy — (italics) a children's novel (1886) by Frances H. Burnett.
  • lowest common multiple — the smallest number that is a common multiple of a given set of numbers.
  • make common cause with — join forces
  • make out like a bandit — a robber, especially a member of a gang or marauding band.
  • manner of articulation — the degree of obstruction or the type of channel imposed upon the passage of air at a given place of articulation, as denoted by such categories as stop, fricative, nasal, and semivowel.
  • manufacturing industry — the industry of manufacturing goods from raw materials
  • 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.
  • mathematical induction — induction (def 5).
  • mcculloch-pitts neuron — (artificial intelligence)   The basic building block of artificial neural networks. It receives one or more inputs and produces one or more identical outputs, each of which is a simple non-linear function of the sum of the inputs to the neuron. The non-linear function is typically a threshhold or step function which is usually smoothed (i.e. a sigmoid) to facilitate learning.
  • 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.
  • methyl isobutyl ketone — a colorless, slightly water-soluble, flammable liquid, C 6 H 1 2 O, having a pleasant odor: used as a solvent for nitrocellulose, gums, resins, fats, waxes, and oils.
  • middle-distance runner — someone who runs races of a length between the sprints and the distance events, esp the 800 metres and the 1500 metres
  • miniature bull terrier — one of an English breed of small muscular dogs resembling a smaller version of a standard bull terrier, with a short, flat, harsh coat of glossy white or white with brindle patches.
  • molecular distillation — a vacuum distillation in which the molecules of the distillate reach the condenser before colliding with one another.
  • monoammonium phosphate — a white, crystalline, moderately water-soluble compound, NH 4 H 2 PO 4 , used as fertilizer, in fire extinguishers, etc.
  • mountain standard time — one of the standard times used in North America, seven hours behind Greenwich Mean Time
  • much ado about nothing — a comedy (1598?) by Shakespeare.
  • multiplicative inverse — reciprocal (def 9).
  • national semiconductor — (company)   A semiconductor manufacturer, responsible for the SC/MP, National Semiconductor 16000 and National Semiconductor 32000 series of microprocessors.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?