throbber

`
` ENTRIAESTLQ
`
`1 Fully updated with the latest
`technologies, terms, and acronyms
`Easy to read; expertly iiiust:'ated V
`
`Definitive coverage of hardware,
`software, the Internenand morei
`
`Versata 2301
`Ford v. Versata
`
`t
`
`11>R2017T-00150
`
`Versata 2301
`Ford v. Versata
`IPR2017-00150
`
`- i -
`
`

`

`Microsoft‘
`
`Microsoft“
`
`Cpmputer
`Dictionary
`Fifth Edition [:
`
`- ii -
`
`

`

`...<..n.~...~...,
`
`,,..‘N44-r,.,,u..:’x::.““
`
`PUBLISHED BY
`Microsoft Press
`
`A Division of Microsoft Corporation
`One Microsoft Way
`Redmond, Washington 98052-6399
`
`Copyright © 2002 by Microsoft Corporation
`
`All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form
`or by any means without the written permission of the publisher.
`
`Library of Congress Control Number: 2002019714
`
`Microsoft Press books are available through booksellers and distributors worldwide. For further informa-
`tion about international editions, contact your local Microsoft Corporation office or contact Microsoft
`Press International directly at fax (425) 936-7329. Visit our Web site at www.microsoft.corn/mspress.
`Send comments to mspinpuz@micr0s0ft.com.
`
`Active Desktop, Active Directory, ActiveMovie, ActiveStore, ActiveSync, ActiveX, Authenticode,
`BackOffice, BizTalk, ClearType, Direct3D, DirectAnimation, DirectDraw, Directlnput, DirectMusic,
`DirectPlay, DirectShow, DirectSound, DirectX, Entourage, FoxPro, FrontPage, Hotmail, IntelliEye,
`lntelliMouse, IntelliSense, JScript, MapPoint, Microsoft, Microsoft Press, Mobile Explorer, MS-DOS,
`MSN, Music Central, NetMeeting, Outlook, PhotoDraw, PowerPoint, SharePoint, UltimateTV, Visio,
`Visual Basic, Visual C++, Visual FoxPro, Visual lnterDev, Visual J++, Visual SourceSafe, Visual Studio,
`
`Win32, Win32s, Windows, Windows Media, Windows NT, Xbox are either registered trademarks or
`trademarks of Microsoft Corporation in the United States and/or other countries. Other product and
`company names mentioned herein may be the trademarks of their respective owners.
`
`The example companies, organizations, products, domain names, e—mail addresses, logos, people, places,
`and events depicted herein are fictitious. No association with any real company, organization, product,
`domain name, e—mail address, logo, person, place, or event is intended or should be inferred.
`
`Acquisitions Editor: Alex Blanton
`Project Editor: Sandra Haynes
`
`Body Part No. XO8—4l 929
`
`
`
`.A.._....,.............~mama:$‘<\‘V>‘x‘;<'vvvlv“.”~.v:~"“¢L::z:g:‘n:)‘.,ISla“§waA_‘‘:.,:.w.;,
`
`
`
`
`
`-iii-
`
`- iii -
`
`

`

`.4.».
`
`
`
`lnterNlC n. Short for NSFnet (Internet) Network Infor-
`mation Center. The organization that has traditionally reg-
`istered domain names and IP addresses as well as
`distributed information about the Internet. lnterNlC was
`formed in 1993 as a consortium involving the U.S.
`National Science Foundation, AT&T, General Atomics,
`and Network Solutions, Inc. (Hemdon, 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 interop-
`erable 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, interoperabil-
`ity 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 pro-
`gram by translating one statement at a time into executable
`form and executing itbefore translating the next state-
`ment, 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 state-
`ment 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 exe-
`cutes each statement in a program written in an interpreted
`language. See also compiler, interpreted language, lan-
`guage processor.
`
`interprocess communication n. The ability of one task
`or process to communicate with another in a multitasking
`operating system. Common methods include pipes, sema-
`phores, shared memory, queues, signals, and mailboxes.
`Acronym: IPC. '1‘
`
`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 pre-
`vents 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 inter-
`rogate 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 pro-
`cessor requesting attention from the processor. When the
`processor receives an interrupt, it suspends its current
`operations, saves the status of its work, and transfers con-
`trol to a special routine known as an interrupt handler,
`which contains the instructions for dealing with the partic-
`ular 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 ser-
`vices. Interrupts are the processor’s way of communicat-
`ing 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 proces-
`sor to complete a particular task. See also exception, exter—
`nal interrupt, hardware interrupt, internal interrupt,
`software interrupt.
`
`interrupt—driven processing It. 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. Inter-
`rupt-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 correspond-
`ing 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 inter-
`rupt handlers to replace or supplement existing handlers,
`
`285
`
`

This document is available on Docket Alarm but you must sign up to view it.


Or .

Accessing this document will incur an additional charge of $.

After purchase, you can access this document again without charge.

Accept $ Charge
throbber

Still Working On It

This document is taking longer than usual to download. This can happen if we need to contact the court directly to obtain the document and their servers are running slowly.

Give it another minute or two to complete, and then try the refresh button.

throbber

A few More Minutes ... Still Working

It can take up to 5 minutes for us to download a document if the court servers are running slowly.

Thank you for your continued patience.

This document could not be displayed.

We could not find this document within its docket. Please go back to the docket page and check the link. If that does not work, go back to the docket and refresh it to pull the newest information.

Your account does not support viewing this document.

You need a Paid Account to view this document. Click here to change your account type.

Your account does not support viewing this document.

Set your membership status to view this document.

With a Docket Alarm membership, you'll get a whole lot more, including:

  • Up-to-date information for this case.
  • Email alerts whenever there is an update.
  • Full text search for other cases.
  • Get email alerts whenever a new case matches your search.

Become a Member

One Moment Please

The filing “” is large (MB) and is being downloaded.

Please refresh this page in a few minutes to see if the filing has been downloaded. The filing will also be emailed to you when the download completes.

Your document is on its way!

If you do not receive the document in five minutes, contact support at support@docketalarm.com.

Sealed Document

We are unable to display this document, it may be under a court ordered seal.

If you have proper credentials to access the file, you may proceed directly to the court's system using your government issued username and password.


Access Government Site

We are redirecting you
to a mobile optimized page.





Document Unreadable or Corrupt

Refresh this Document
Go to the Docket

We are unable to display this document.

Refresh this Document
Go to the Docket