Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:

MICROSOFT Computer Dictionary, Fifth Edition

.pdf
Скачиваний:
163
Добавлен:
10.08.2013
Размер:
8.13 Mб
Скачать

Microsoft Computer Dictionary, Fifth Edition

Society. In addition, the Internet Society publishes the Internet Society News and produces the annual INET conference. Acronym: ISOC.See also INET, Internet Architecture Board.

Internet Software Consortium

n. A nonprofit organization that develops software that is available for free, via the World Wide Web or FTP, and engages in development of Internet standards such as the Dynamic Host Configuration Protocol (DHCP). Acronym: ISC. See also DHCP.

Internet SSE n. See SSE.

Internet Streaming Media Alliance n. See ISMA.

Internet synchronization

n. 1. The process of synchronizing data between computing and communication devices that are connected to the Internet. 2. A feature in Microsoft Jet and Microsoft Access that allows replicated information to be synchronized in an environment in which an Internet server is configured with Microsoft Replication Manager, a tool included with Microsoft Office 2000 Developer.

Internet Talk Radio

n. Audio programs similar to radio broadcasts but distributed over the Internet in the form of files that can be downloaded via FTP. Internet Talk Radio programs, prepared at the National Press Building in Washington, D.C., are 30 minutes to 1 hour in length; a 30-minute program requires about 15 MB of disk space. Acronym: ITR.

Internet telephone

n. Point-to-point voice communication that uses the Internet instead of the public-switched telecommunications network to connect the calling and called parties. Both the sending and the receiving party need a computer, a modem, an Internet connection, and an Internet telephone software package to make and receive calls.

Internet Telephony Service Provider n. See ITSP.

Internet telephony n. See VoIP.

Internet television

n. The transmission of television audio and video signals over the Internet.

Internet traffic distribution n. See ITM.

Internet traffic management n. See ITM.

internetwork1

adj. Of or pertaining to communications between connected networks. It is often used to refer to communication between one LAN (local area network) and another over the Internet or another WAN (wide-area network). See also LAN, WAN.

internetwork2

n. A network made up of smaller, interconnected networks.

Internetwork Packet Exchange

Microsoft Computer Dictionary, Fifth Edition

471

Microsoft Computer Dictionary, Fifth Edition

n. See IPX.

Internetwork Packet Exchange/Sequenced Packet Exchange n. See IPX/SPX.

Internet World

n. Series of international conferences and exhibitions on e-commerce and Internet technology sponsored by Internet World magazine. Major conferences include the world’s largest Internet conferences, Internet World Spring and Internet World Fall.

Internet Worm

n. A string of self-replicating computer code that was distributed through the Internet in November 1988. In a single night, it overloaded and shut down a large portion of the computers connected to the Internet at that time by replicating itself over and over on each computer it accessed, exploiting a bug in UNIX systems. Intended as a prank, the Internet Worm was written by a student at Cornell University. See also back door, worm.

InterNIC

n. Short for NSFnet (Internet) Network Information Center. The organization that has traditionally registered domain names and IP addresses as well as distributed information about the Internet. InterNIC was formed in 1993 as a consortium involving the U.S. National Science Foundation, AT&T, General Atomics, and Network Solutions, Inc. (Herndon, Va.). The latter partner administers InterNIC Registration Services, which assigns Internet names and addresses.

interoperability

n. Referring to components of computer systems that are able to function in different environments. For example, Microsoft’s NT operating system is interoperable on Intel, DEC Alpha, and other CPUs. Another example is the SCSI standard for disk drives and other peripheral devices that allows them to interoperate with different operating systems. With software, interoperability occurs when programs are able to share data and resources. Microsoft Word, for example, is able to read files created by Microsoft Excel.

interpolate

vb. To estimate intermediate values between two known values in a sequence.

interpret

vb. 1. To translate a statement or instruction into executable form and then execute it. 2. To execute a program by translating one statement at a time into executable form and executing it before translating the next statement, rather than by translating the program completely into executable code (compiling it) before executing it separately. See also interpreter. Compare compile.

interpreted language

n. A language in which programs are translated into executable form and executed one statement at a time rather than being translated completely (compiled) before execution. Basic, LISP, and APL are generally interpreted languages, although Basic can also be compiled. See also compiler. Compare compiled language.

interpreter

n. A program that translates and then executes each statement in a program written in an interpreted language. See also compiler, interpreted language, language processor.

interprocess communication

n. The ability of one task or process to communicate with another in a multitasking operating system. Common methods include pipes, semaphores, shared memory, queues, signals, and mailboxes. Acronym: IPC.

Microsoft Computer Dictionary, Fifth Edition

472

Microsoft Computer Dictionary, Fifth Edition

inter-record gap

n. An unused space between data blocks stored on a disk or tape. Because the speed of disks and tapes fluctuates slightly during operation of the drives, a new data block may not occupy the exact space occupied by the old block it overwrites. The inter-record gap prevents the new block from overwriting part of adjacent blocks in such a case. Acronym: IRG.Also called: gap, interblock gap.

interrogate

vb. To query with the expectation of an immediate response. For example, a computer may interrogate an attached terminal to determine the terminal’s status (readiness to transmit or receive).

interrupt

n. A signal from a device to a computer’s processor requesting attention from the processor. When the processor receives an interrupt, it suspends its current operations, saves the status of its work, and transfers control to a special routine known as an interrupt handler, which contains the instructions for dealing with the particular situation that caused the interrupt. Interrupts can be generated by various hardware devices to request service or report problems, or by the processor itself in response to program errors or requests for operating-system services. Interrupts are the processor’s way of communicating with the other elements that make up a computer system. A hierarchy of interrupt priorities determines which interrupt request will be handled first if more than one request is made. A program can temporarily disable some interrupts if it needs the full attention of the processor to complete a particular task. See also exception, external interrupt, hardware interrupt, internal interrupt, software interrupt.

interrupt-driven processing

n. Processing that takes place only when requested by means of an interrupt. After the required task has been completed, the CPU is free to perform other tasks until the next interrupt occurs. Interrupt-driven processing is usually employed for responding to events such as a key pressed by the user or a floppy disk drive that has become ready to transfer data. See also interrupt.

Compare autopolling.

interrupt handler

n. A special routine that is executed when a specific interrupt occurs. Interrupts from different causes have different handlers to carry out the corresponding tasks, such as updating the system clock or reading the keyboard. A table stored in low memory contains pointers, sometimes called vectors, that direct the processor to the various interrupt handlers. Programmers can create interrupt handlers to replace or supplement existing handlers, such as by making a clicking sound each time the keyboard is pressed.

interrupt priority n. See interrupt.

interrupt request line

n. A hardware line over which a device such as an input/output port, the keyboard, or a disk drive can send interrupts (requests for service) to the CPU. Interrupt request lines are built into the computer’s internal hardware and are assigned different levels of priority so that the CPU can determine the sources and relative importance of incoming service requests. They are of concern mainly to programmers dealing with low-level operations close to the hardware. Acronym: IRQ.

interrupt vector

n. A memory location that contains the address of the interrupt handler routine that is to be called when a specific interrupt occurs. See also interrupt.

interrupt vector table

Microsoft Computer Dictionary, Fifth Edition

473

Microsoft Computer Dictionary, Fifth Edition

n. See dispatch table.

intersect

n. An operator in relational algebra, used in database management. Given two relations (tables), A and B, that have corresponding fields (columns) containing the same types of values (that is, they are union-compatible), then INTERSECT A, B builds a third relation containing only those tuples (rows) that appear in both A and B. See also tuple.

interstitial

n. An Internet ad format that appears in a pop-up window between Web pages. Interstitial ads download completely before appearing, usually while a Web page the user has chosen is loading. Because interstitial pop-up windows don’t appear until the entire ad has downloaded, they often use animated graphics, audio, and other attention-getting multimedia technology that require longer download time.

in the wild

adj. Currently affecting the computing public, particularly in regard to computer viruses. A virus that is not yet contained or controlled by antivirus software or that keeps reappearing despite virus detection measures is considered to be in the wild. See also virus.

intranet

n. A private network based on Internet protocols such as TCP/IP but designed for information management within a company or organization. Its uses include such services as document distribution, software distribution, access to databases, and training. An intranet is so called because it looks like a World Wide Web site and is based on the same technologies, yet is strictly internal to the organization and is not connected to the Internet proper. Some intranets also offer access to the Internet, but such connections are directed through a firewall that protects the internal network from the external Web. Compare extranet.

intraware

n. Groupware or middleware for use on a company’s private intranet. Intraware packages typically contain e-mail, database, workflow, and browser applications. See also groupware, intranet, middleware.

intrinsic font

n. A font (type size and design) for which a bit image (an exact pattern) exists that can be used as is, without such modification as scaling. Compare derived font.

intruder

n. An unauthorized user or unauthorized program, generally considered to have malicious intent, on a computer or computer network. See also bacterium, cracker, Trojan horse, virus.

intruder attack

n. A form of hacker attack in which the hacker enters the system without prior knowledge or access to the system. The intruder will typically use a combination of probing tools and techniques to learn about the network to be hacked. Compare insider attack.

Intrusion Countermeasure Electronics n. See ICE (definition 3).

intrusion detection n. See IDS.

intrusion-detection system n. See IDS.

Microsoft Computer Dictionary, Fifth Edition

474

Microsoft Computer Dictionary, Fifth Edition

invalid

adj. Erroneous or unrecognizable because of a flaw in reasoning or an error in input. Invalid results, for example, might occur if the logic in a program is faulty. Compare illegal.

inverse video

n. See reverse video.

invert

vb. 1. To reverse something or change it to its opposite. For example, to invert the colors on a monochrome display means to change light to dark and dark to light. See the illustration. 2. In a digital electrical signal, to replace a high level by a low level and vice versa. This type of operation is the electronic equivalent of a Boolean NOT operation.

Invert. An example showing the effects of inverting the colors on a monochrome display.

inverted file

n. See inverted list.

inverted list

n. A method for creating alternative locators for sets of information. For example, in a file containing data about cars, records 3, 7, 19, 24, and 32 might contain the value “Red” in the field COLOR. An inverted list (or index) on the field COLOR would contain a record for “Red” followed by the locator numbers 3, 7, 19, 24, and 32. See also field, record. Compare linked list.

inverted-list database

n. A database similar to a relational database but with several differences that make it much more difficult for the database management system to ensure data consistency, integrity, and security than with a relational system. The rows (records or tuples) of an inverted-list table are ordered in a specific physical sequence, independent of any orderings that may be imposed by means of indexes. The total database can also be ordered, with specified logical merge criteria being imposed between tables. Any number of search keys, either simple or composite, can be defined. Unlike the keys of a relational system, these search keys are arbitrary fields or combinations of fields. No integrity or uniqueness constraints are enforced; neither the indexes nor the tables are transparent to the user. Compare relational database.

inverted structure

n. A file structure in which record keys are stored and manipulated separately from the records themselves.

inverter

n. 1. A logic circuit that inverts (reverses) the signal input to it—for example, inverting a high input to a low output. 2. A device that converts direct current (DC) to alternating current (AC).

invoke

vb. To call or activate; used in reference to commands and subroutines.

I/O

n. See input/output.

Microsoft Computer Dictionary, Fifth Edition

475

Microsoft Computer Dictionary, Fifth Edition

I/O-bound

adj. See input/output-bound.

I/O controller

n. See input/output controller.

I/O device

n. See input/output device.

ion-deposition printer

n. A page printer in which the image is formed in electrostatic charges on a drum that picks up toner and transfers it to the paper, as in a laser, LED, or LCD printer, but the drum is charged using a beam of ions rather than light. These printers, used mainly in high-volume dataprocessing environments, typically operate at speeds from 30 to 90 pages per minute. In iondeposition printers, toner is typically fused to paper by a method that is fast and does not require heat but leaves the paper a little glossy, making it unsuitable for business correspondence. In addition, ion-deposition printers tend to produce thick, slightly fuzzy characters; the technology is also more expensive than that of a laser printer. See also electrophotographic printers, nonimpact printer, page printer. Compare laser printer, LCD printer, LED printer.

I/O port

n. See port1 (definition 1).

I/O processor

n. See input/output processor.

IO.SYS

n. One of two hidden system files installed on an MS-DOS startup disk. IO.SYS in IBM releases of MS-DOS (called IBMBIO.COM) contains device drivers for peripherals such as the display, keyboard, floppy disk drive, hard disk drive, serial port, and real-time clock. See also MSDOS.SYS.

IP

n. Acronym for Internet Protocol. The protocol within TCP/IP that governs the breakup of data messages into packets, the routing of the packets from sender to destination network and station, and the reassembly of the packets into the original data messages at the destination. IP runs at the internetwork layer in the TCP/IP model— equivalent to the network layer in the ISO/OSI reference model. See also ISO/OSI reference model, TCP/IP. Compare TCP.

IP address

n. Short for Internet Protocol address. A 32-bit (4-byte) binary number that uniquely identifies a host (computer) connected to the Internet to other Internet hosts, for the purposes of communication through the transfer of packets. An IP address is expressed in “dotted quad” format, consisting of the decimal values of its 4 bytes, separated with periods; for example, 127.0.0.1. The first 1, 2, or 3 bytes of the IP address identify the network the host is connected to; the remaining bits identify the host itself. The 32 bits of all 4 bytes together can signify almost 232, or roughly 4 billion, hosts. (A few small ranges within that set of numbers are not used.) Also called: Internet Protocol number, IP number. See also host, IANA, ICANN, InterNIC, IP, IP address classes, packet (definition 2). Compare domain name.

IP address classes

n. Short for Internet Protocol address classes. The classes into which IP addresses were divided to accommodate different network sizes. Each class is associated with a range of possible IP addresses and is limited to a specific number of networks per class and hosts per network. See the table. See also Class A IP address, Class B IP address, Class C IP address, IP address.

Microsoft Computer Dictionary, Fifth Edition

476

Microsoft Computer Dictionary, Fifth Edition

 

Address Class

Range of IP Addresses

Networks per Class

Hosts per Network

 

(maximum number)

 

 

 

 

 

Class A (/8)

1.x.x.x to 126.x.x.x

126

16,777,214

 

Class B (/16)

128.0.x.x to 191.255.x.x

16,384

65,534

 

Class C (/24)

192.0.0.x to 223.255.255.x

2,097,152

254

 

 

 

 

 

IP address classes. Each x represents the host-number field assigned by the network administrator.

IP aliasing n. See NAT.

IPC

n. See interprocess communication.

ipchains

n. See iptables.

IP Filter

n. Short for Internet Protocol Filter. A TCP/IP packet filter for UNIX, particularly BSD. Similar in functionality to netfilter and iptables in Linux, IP Filter can be used to provide network address translation (NAT) or firewall services. See also firewall. Compare netfilter, iptables.

IPL

n. See initial program load.

IP masquerading n. See NAT.

IP multicasting

n. Short for Internet Protocol multicasting. The extension of local area network multicasting technology to a TCP/IP network. Hosts send and receive multicast datagrams, the destination fields of which specify IP host group addresses rather than individual IP addresses. A host indicates that it is a member of a group by means of the Internet Group Management Protocol. See also datagram, Internet Group Membership Protocol, IP, MBONE, multicasting.

IPng

n. Acronym for Internet Protocol next generation. A revised version of the Internet Protocol (IP) designed primarily to address growth on the Internet. IPng is compatible with, but an evolutionary successor to, the current version of IP, IPv4 (IP version 4), and was approved as a draft standard in 1998 by the IETF (Internet Engineering Task Force). It offers several improvements over IPv4 including a quadrupled IP address size (from 32 bits to 128 bits), expanded routing capabilities, simplified header formats, improved support for options, and support for quality of service, authentication, and privacy. Also called: IPv6. See also IETF, IP, IP address.

IP number

n. See IP address.

IPP

n. See Internet Printing Protocol.

IPSec

n. Short for Internet Protocol Security. A security mechanism under development by the IETF (Internet Engineering Task Force) designed to ensure secure packet exchanges at the IP

Microsoft Computer Dictionary, Fifth Edition

477

Microsoft Computer Dictionary, Fifth Edition

(Internet Protocol) layer. IPSec is based on two levels of security: AH (Authentication Header), which authenticates the sender and assures the recipient that the information has not been altered during transmission, and ESP (Encapsulating Security Protocol), which provides data encryption in addition to authentication and integrity assurance. IPSec protects all protocols in the TCP/IP protocol suite and Internet communications by using Layer Two Tunneling Protocol (L2TP) and is expected to ensure secure transmissions over virtual private networks (VPNs). See also anti-replay, communications protocol, Diffie-Hellman, ESP, IETF, IP, IPv6, Layer L2TP, TCP/IP, packet, virtual private network.

IP Security n. See IPSec.

IP/SoC Conference and Exhibition

n. Acronym for Intellectual Property/System on a Chip Conference and Exhibition. Leading conference and exhibition for executives, architects, and engineers using intellectual property in the design and production of system-on-a-chip semiconductors. The event features product exhibits and forums for the exchange of information.

IP splicing

n. See IP spoofing.

IP spoofing

n. The act of inserting a false sender IP address into an Internet transmission in order to gain unauthorized access to a computer system. Also called: IP splicing. See also IP address, spoofing.

IP switching

n. A technology developed by Ipsilon Networks (Sunnyvale, Calif.) that enables a sequence of IP packets with a common destination to be transmitted over a high-speed, high-bandwidth Asynchronous Transfer Mode (ATM) connection.

iptables

n. A utility used to configure firewall settings and rules in Linux. Part of the netfilter framework in the Linux kernel, iptables replaces ipchains, a previous implementation. See also netfilter. Compare IP Filter.

IP telephony

n. Telephone service including voice and fax, provided through an Internet or network connection. IP telephony requires two steps: conversion of analog voice to digital format by a coding/uncoding device (codec) and conversion of the digitized information to packets for IP transmission. Also called: Internet telephony, Voice over IP (VoIP). See also H.323, VoIP.

IP tunneling

n. A technique used to encapsulate data inside a TCP/IP packet for transmission between IP addresses. IP tunneling provides a secure means for data from different networks to be shared over the Internet.

IPv4

n. Short for Internet Protocol version 4. The current version of the Internet Protocol (IP), as compared with the next-generation IP, which is known familiarly as IPng and more formally as IPv6 (IP version 6). See also IP. Compare IPng.

IPv6

n. Short for Internet Protocol version 6. The next-generation Internet Protocol from the Internet Engineering Task Force (IETF), IPv6 is now included as part of IP support in many products and in the major operating systems. IPv6 offers several improvements from IPv4, most significantly an

Microsoft Computer Dictionary, Fifth Edition

478

Microsoft Computer Dictionary, Fifth Edition

increase of available address space from 32 to 128 bits, which makes the number of available addresses effectively unlimited. Usually called IPng (next generation), IPv6 also includes support for multicast and anycast addressing. See also anycasting, IP, IPng.

ipvs

n. Acronym for IP Virtual Server. See LVS.

IPX

n. Acronym for Internetwork Packet Exchange. The protocol in Novell NetWare that governs addressing and routing of packets within and between LANs. IPX packets can be encapsulated in Ethernet packets or Token Ring frames. IPX operates at ISO/OSI levels 3 and 4 but does not perform all the functions at those levels. In particular, IPX does not guarantee that a message will be complete (no lost packets); SPX has that job. See also Ethernet (definition 1), packet, Token Ring network. Compare SPX (definition 1).

IPX/SPX

n. Acronym for Internetwork Packet Exchange/ Sequenced Packet Exchange. The network and transport level protocols used by Novell NetWare, which together correspond to the combination of TCP and IP in the TCP/ IP protocol suite. IPX is a connectionless protocol that handles addressing and routing of packets. SPX, which runs above IPX, ensures correct delivery. See also IPX, SPX (definition 1).

IR

n. See infrared.

IRC

n. Acronym for Internet Relay Chat. A service that enables an Internet user to participate in a conversation on line in real time with other users. An IRC channel, maintained by an IRC server, transmits the text typed by each user who has joined the channel to all other users who have joined the channel. Generally, a channel is dedicated to a particular topic, which may be reflected in the channel’s name. An IRC client shows the names of currently active channels, enables the user to join a channel, and then displays the other participants’ words on individual lines so that the user can respond. IRC was invented in 1988 by Jarkko Oikarinen of Finland. See also channel (definition 2), server (definition 2).

IrDA

n. Acronym for Infrared Data Association. The industry organization of computer, component, and telecommunications vendors who have established the standards for infrared communication between computers and peripheral devices such as printers.

IRE scale

n. Short for Institute of Radio Engineers scale. Scale to determine video signal amplitudes as devised by the Institute of Radio Engineers, which is now part of the Institute of Electrical and Electronic Engineers (IEEE). The IRE scale includes a total of 140 units, with 100 up and 40 down from zero.

IRG

n. See inter-record gap.

IRGB

n. Acronym for Intensity Red Green Blue. A type of color encoding originally used in IBM’s Color/Graphics Adapter (CGA) and continued in the EGA (Enhanced Graphics Adapter) and VGA (Video Graphics Array). The standard 3-bit RGB color encoding (specifying eight colors) is supplemented by a fourth bit (called Intensity) that uniformly increases the intensity of the red, green, and blue signals, resulting in a total of 16 colors. See also RGB.

Microsoft Computer Dictionary, Fifth Edition

479

Microsoft Computer Dictionary, Fifth Edition

IRL

n. Acronym for in real life. An expression used by many online users to denote life outside the computer realm, especially in conjunction with virtual worlds such as online talkers, IRC, MUDs, and virtual reality. See also IRC, MUD, talker, virtual reality.

IRQ

n. Acronym for interrupt request. One of a set of possible hardware interrupts, identified by a number, on a Wintel computer. The number of the IRQ determines which interrupt handler will be used. In the AT bus, ISA, and EISA, 15 IRQs are available; in Micro Channel Architecture, 255 IRQs are available. Each device’s IRQ is hardwired or set by a jumper or DIP switch. The VL bus and the PCI local bus have their own interrupt systems, which they translate to IRQ numbers. See also AT bus, DIP switch, EISA, interrupt, IRQ conflict, ISA, jumper, Micro Channel Architecture, PCI local bus, VL bus.

IRQ conflict

n. The condition on a Wintel computer in which two different peripheral devices use the same IRQ to request service from the central processing unit (CPU). An IRQ conflict will prevent the system from working correctly; for example, the CPU may respond to an interrupt from a serial mouse by executing an interrupt handler for interrupts generated by a modem. IRQ conflicts can be prevented by the use of Plug and Play hardware and software. See also interrupt handler, IRQ, Plug and Play.

irrational number

n. A real number that cannot be expressed as the ratio of two integers. Examples of irrational numbers are the square root of 3, pi, and e. See also integer, real number.

IRSG

n. See Internet Research Steering Group.

IRTF

n. See Internet Research Task Force.

IS

n. See Information Services.

ISA

n. Acronym for Industry Standard Architecture. A bus design specification that allows components to be added as cards plugged into standard expansion slots in IBM Personal Computers and compatibles. Originally introduced in the IBM PC/XT with an 8-bit data path, ISA was expanded in 1984, when IBM introduced the PC/AT, to permit a 16-bit data path. A 16-bit ISA slot actually consists of two separate 8-bit slots mounted end-to-end so that a single 16-bit card plugs into both slots. An 8-bit expansion card can be inserted and used in a 16-bit slot (it occupies only one of the two slots), but a 16-bit expansion card cannot be used in an 8-bit slot. See also EISA, Micro Channel Architecture.

ISAM

n. See indexed sequential access method.

ISAPI

n. Acronym for Internet Server Application Programming Interface. An easy-to-use, highperformance interface for back-end applications for Microsoft’s Internet Information Server (IIS). ISAPI has its own dynamic-link library, which offers significant performance advantages over the CGI (Common Gateway Interface) specification. See also API, dynamic-link library, Internet Information Server. Compare CGI.

ISAPI filter

Microsoft Computer Dictionary, Fifth Edition

480