5Lesson 5: Multimedia on the Web

Size: px
Start display at page:

Download "5Lesson 5: Multimedia on the Web"

Transcription

1 5Lesson 5: Multimedia on the Web Objectives By the end of this lesson, you will be able to: 1.5.7: Download and store files using a Web browser : Install and upgrade common plug-ins, add-ons and viewers (e.g., Adobe Reader, Adobe Flash Player, Microsoft Silverlight, Windows Media Player, Apple QuickTime) and identify their common file name extensions : Use document and multimedia file formats, including PDF, PNG, RTF, PostScript (PS), AVI, MPEG, MP3, MP4, Ogg. Convert between file formats when appropriate.

2 5-2 Internet Business Associate Pre-Assessment Questions 1. Briefly describe C Which statement about vector graphics is true? a. Vector graphics are saved as sequences of vector statements. b. Vector graphics have much larger file sizes than raster graphics. c. Vector graphics are pixel-based. d. GIFs and JPGs are vector graphics. 3. Name at least two examples of browser plug-ins.

3 Lesson 5: Multimedia on the Web 5-3 Introduction to Multimedia on the Web Multimedia on the Web has expanded rapidly as broadband connections have allowed users to connect at faster speeds. Almost all Web sites, including corporate sites, feature multimedia content and interactive objects. For instance, employee orientation sessions, audio and video memos, and training materials are often placed on the Internet or corporate intranets. Nearly all network-connected devices, such as PCs, tablets, smartphones and smart TVs, can view online interactive multimedia. Each device includes a sound card, speakers and a video card. In some cases, small applications called plug-ins are required for browsers to view content that is not supported. Browser plug-ins are commonly used to play streaming audio and video, and interact with multimedia objects. As an IT professional, you should understand the elements required for browsers to view these items. This lesson will introduce you to multimedia content and several popular plug-ins that allow browsers to display it. It will teach you to install and operate some of the most widely used plug-ins. You will also learn how to download and store various types of files from the Internet. CIW Online Resources Movie Clips Visit CIW Online at to watch a movie clip about this topic. Lesson 5: Multimedia on the Web Objects, Active Content and Languages object An element on a Web page that contains data and procedures for how that item will react when activated. On a Web page, an object is typically a multimedia presentation. object-oriented programming (OOP) Programming concept based on objects and data and how they relate to one another, instead of logic and actions; C++ and Java are OOP languages. Objects enable Web authors to include multimedia effects, also called active content, on their sites. These objects can play sounds, show video clips and animation sequences, or demonstrate ideas in 3-D simulations. In addition to making the user's Web experience more enjoyable, these multimedia capabilities can greatly enhance a site's educational value. Many businesses expect to profit from this active approach to Web site design and construction. The following sections discuss various types of programming and scripting languages used to create objects and active content, and their relationships to one another. C C is a programming language used primarily to create operating systems and applications. For instance, many UNIX operating systems have been developed using C. Because object-oriented programming (OOP) is becoming popular, C is being replaced by C++ and Java. In object-oriented programming, a program is handled as a collection of individual objects that perform separate functions, rather than as a sequence of statements that performs a specific task. C++ C++ is a superset of the C language that uses object-oriented programming. Although the names are similar, C++ uses a completely different set of programming concepts than C uses and is considered the best language for creating large applications.

4 5-4 Internet Business Associate Java An object-oriented programming language developed by Sun Microsystems that is fully cross-platform functional. applets Small programs written in Java, which are downloaded as needed and executed within a Web page or browser. Java Java is an object-oriented language developed by Sun Microsystems. Java concentrates on distributed objects over a network (for example, the Internet), and is often used when data needs to be shared across the network. Java can be used on the server side, or on the client side. An end user will never see Java used on the server side. However, they will benefit from this code. When Java is used on the client side, the end user will see a Java applet. Java applets Java applets are programs written in the Java language and designed to run within a Web browser when accessed. Applets were the first technology developed for bringing program objects to the Web. Similar to ActiveX objects (discussed later in this lesson), applets animate pages, add functionality and interactivity, access multimedia services, and provide active content. Java applets are miniature Java programs downloaded into a Web browser when a user requests a Web page. They are treated the same way as other Web-embedded objects and are displayed in the browser's content area. Your Web browser must be Java-enabled to run applets. Most browsers, including Google Chrome, Mozilla Firefox and Windows Internet Explorer, support Java applets. Unlike static objects, such as non-animated GIF and JPEG images or hyperlinks, Java applets can be dynamic and interactive. Their special effects include the following: dynamic Always changing. interactive The characteristic of some hardware and software, such as computers, games and multimedia systems, that allows them to respond differently based on a user's actions. Inline video, changing text, and animation dynamic objects that can be embedded in Web pages without the need for external helper applications or plug-ins. Audio sound files played either when an applet is invoked or in response to user action. User interaction action and responses between a user and the displayed applet. Examples of interactive applets include user-interface controls that allow the user to interact with an on-screen element, such as in a computer game. Real-time data feeds transmissions that maintain an open connection between the server and an applet on a Web page, or periodically poll the server to update information displayed in the browser. Examples of real-time data feeds are online clocks and up-to-the-minute stock market tickers. Applets can combine these properties to create complex but easy-to-use Internet applications. event-driven Reacting to particular user actions or the browser's completion of a specific task. JavaScript The Web is event-driven. For example, when you click or select an element on a Web page, you have caused an event. Events include a mouse click, a mouse drag, text entered or a page loaded (or unloaded) in the browser. JavaScript is an event-driven scripting language because it is designed to react whenever an event occurs. Traditional programming languages, such as C, cause events to happen, rather than reacting to events. By contrast, scripting languages are used within existing programs to extend those programs' capabilities. If you have ever written a macro in Microsoft Word or Excel to perform a task, you have already used a scripting language.

5 Lesson 5: Multimedia on the Web 5-5 JavaScript was the first scripting language developed exclusively for online content design. JavaScript syntax resembles that of traditional programming languages. These scripts are placed within your Web document. When your browser retrieves a page that incorporates JavaScript, it runs the scripts and performs the appropriate operations. JavaScript vs. Java Although the names are similar, JavaScript and Java are completely different languages and share no real similar features. Java is an object-oriented programming language, whereas JavaScript (as the name suggests) is an object-based scripting language. Java, developed by Sun Microsystems, can create stand-alone applications and Java applets. LiveScript The Netscapedeveloped scripting language that was the predecessor to JavaScript. JavaScript, originally developed by Netscape Communications, has its origins in a scripting language called LiveScript. Unlike Java, JavaScript is not a stand-alone programming language: It must reside within HTML documents to run. JavaScript adds interactivity to Web pages without the need for specialized server-based programs. JavaScript complements Java by supporting most of Java's expression syntax and basic program flow controls. It also exposes useful properties of Java applets to JavaScript programmers. JScript JScript is the Microsoft version of JavaScript. Microsoft chose the name JScript due to trademark issues with Netscape, the developer of JavaScript. They are essentially the same language. Though based on the same code, JavaScript and JScript each have additional features not supported by the other. JScript is built into Windows Internet Explorer; JavaScript is built into Mozilla Firefox. Because of the slight differences between JavaScript and JScript, programs written in JavaScript may not function properly within Internet Explorer, and programs written in JScript may not function properly within Mozilla Firefox. C# C# (pronounced "C sharp") is Microsoft's object-oriented programming language; it is Microsoft's answer to Java. Microsoft's.NET platform is designed to explicitly support C#, making the language very popular. You can learn more about C# at the following sites: Microsoft MSDN ( Microsoft MSDN C# blog page ( ActiveX An open set of technologies for integrating components on the Internet and within Microsoft applications. ActiveX ActiveX was first developed by Microsoft, but was then turned over to an independent organization, The Open Group. ActiveX is a strategic initiative that incorporates objectoriented programming tools and technologies. ActiveX is Microsoft's response to Java applets. ActiveX technology enables authors to place interactive objects on their Web sites based on a common standard, and allows the objects to work together. With ActiveX, Web pages can include animation, audio, and video. Web content can be dynamic, providing current information on any topic, customized to the user's profile and preferences.

6 5-6 Internet Business Associate ActiveX is used to create ActiveX controls, which are self-contained programs that can be run anywhere on a network, including within a browser from the Internet. ActiveX controls are similar to Java applets, but officially only run in Internet Explorer and on the Windows operating system. Visual Basic Script (VBScript) Scripting language from Microsoft derived from Visual Basic; used to manipulate ActiveX scripts. Visual Basic The Microsoft graphical user interface (GUI) programming language used for developing Windows applications. A modified version of the BASIC programming language. Visual Basic Script (VBScript) Visual Basic Script (VBScript) is an object-based scripting language that Microsoft derived from its more powerful Visual Basic programming language. VBScript can manipulate two types of objects. The first type is called a standard HTML object, which is an intrinsic object such as those found on a form: a display button, radio button, check box or password field. The second type of object, the ActiveX control, is more powerful and flexible. The ActiveX functions of an object are invoked by user action. Microsoft VBScript is a vendor-specific scripting language. Unlike JavaScript, VBScript may not be supported by browsers other than Windows Internet Explorer. CIW Online Resources Online Exercise Visit CIW Online at to complete an interactive exercise that will reinforce what you have learned about this topic. Exercise 5-1: Programming languages used to create objects and active content Objects and Security Issues To work with downloadable active content such as Java applets and ActiveX objects, you need to understand the security issues involved and know how to protect yourself from hostile incursions. Both ActiveX and Java applets allow information to be downloaded and run on your system. However, some content can cause problems ranging from inconvenience to loss of data. Later in this course, you will learn how both Internet Explorer and Firefox provide control options to enable or disable the execution of Java programs and other active content. You will also learn how to disable active content entirely. This knowledge will allow you to choose the appropriate security setting for your personal computer or your company, and shield your system from dangerous content. HTML5 vs. Plug-ins Before discussing browser plug-ins in detail, you must be aware of Hypertext Markup Language version 5 (HTML5). HTML5 is the latest version of HTML and is gaining acceptance in the Web community. One of the major goals of HTML5 is to eliminate the use of browser plug-ins.

7 Lesson 5: Multimedia on the Web 5-7 Figure 5-1: HTML5 logo HTML5 is a standard provided by the W3C. The practical benefit of this standard is that it gives designers, developers and browser creators a universal framework for embedding videos and other interactive content without first having to install a plug-in. The HTML5 standard benefits end users because you do not have to worry about installing the latest plug-in. The browser's rendering engine and programming handle the video content. One drawback of HTML5, however, is that you must update your browser so that it supports HTML5. Most current browsers support HTML5. However, a large percentage of multimedia content on the Internet is created for browser plug-ins. Adobe Flash is probably the most well-known plug-in for viewing multimedia content, such as videos and interactive content. In an effort to reduce the number of plug-ins, HTML5 offers many options for developers. The following list includes several benefits: Introduces the <video> element, which is designed to eliminate the need to install third-party plug-ins (such as those for Adobe Flash or Apple QuickTime). geolocation An HTML5 application programming interface that allows developers to retrieve the geographical location information for a client-side device. cascading style sheets (CSS) Style sheet language that provides the formatting and "look" of a Web page or document written in a markup language. Adds the <audio> element, which allows pages to seamlessly add audio files for events such as podcasts. No audio plug-in, such as Windows Media Center, is required to listen to music. Establishes ways to enable drag-and-drop capability for Web pages without using third-party add-ons. Many other interactive features that use JavaScript provide the same functionality as plug-ins. Allows geolocation, which is the ability for developers to retrieve the geographical location information for a client-side device. One example is using a mobile device's Global Positioning System (GPS) to determine the device's location, which allows Web services to be provided based on the client's location. To view the HTML5 specifications, go to: HTML5 can produce dynamic multimedia content with JavaScript and Cascading Style Sheets (CSS). These technologies used together provide Web pages that easily adapt to smartphones, tablets, gaming devices and smart TVs, as well as to traditional PCs.

8 5-8 Internet Business Associate Apple co-founder Steve Jobs provided a great argument for using these technologies in his famous "Thoughts on Flash" blog. (Adobe Flash is a browser plug-in that provides multimedia such as video, animation, interactive games and audio.) " we strongly believe that all standards pertaining to the web should be open. Rather than use Flash, Apple has adopted HTML5, CSS and JavaScript all open standards. Apple's mobile devices all ship with high performance, low power implementations of these open standards. HTML5, the new web standard that has been adopted by Apple, Google and many others, lets web developers create advanced graphics, typography, animations and transitions without relying on third party browser plug-ins (like Flash). HTML5 is completely open and controlled by a standards committee, of which Apple is a member." Plug-ins drain system resources. As a result, plug-ins use additional CPU and battery power. This consideration is especially important for users on mobile devices, which depend upon battery power. Battery life can decrease as much as 40 percent on a mobile device when running a plug-in. HTML5 solves this issue by providing native support for animation, movies and other multimedia without the use of plug-ins. CSS and JavaScript are used instead. Despite the plug-in backlash, they will be around for the foreseeable future, perhaps indefinitely. The Android operating system uses plug-ins such as Flash, as do Windows systems. It is extremely important that you are familiar with them. Introduction to Plug-in Technology plug-in A program installed in the browser to extend its basic functionality. Allows different file formats to be viewed as part of a standard HTML document. As browsers have evolved, features that enhance their functionality have been included to support a large range of objects. Users can access the active content directly from the browser with plug-ins, such as Apple QuickTime and Adobe Flash players. Plug-ins, also called players, extend the capabilities of Web browsers. When you visit a Web site that requires a plug-in (or a more recent version of a plug-in that you already have installed), you may be prompted to download and install or reinstall the application so that you can view the Web page content properly. What are plug-ins? Plug-ins are applications associated with a specific platform (such as Windows or Apple OS X) and sometimes with a specific browser (such as Chrome, Firefox or Internet Explorer). The primary goal of a plug-in is to provide efficient integration of multimedia formats with the browser and computer. Without this integration, a user would have to download multimedia files and play them back later with a separate application. Plug-ins allow multimedia data types to execute directly from a browser, allowing immediate viewing and listening, thus enhancing your Web experience. Popular plug-ins include: OBJECTIVE : Plug-ins, addons and viewers Adobe Flash Player renders Flash animation files using streaming delivery. Microsoft Silverlight renders animation, vector graphics and multimedia files (audio, video) using streaming delivery. RealNetworks RealPlayer renders multimedia files (audio, video) using streaming delivery. Apple QuickTime renders multimedia files using streaming delivery. Windows Media Player renders multimedia files using streaming delivery.

9 Lesson 5: Multimedia on the Web 5-9 Firefox plug-ins are called add-ons. Firefox add-ons will be discussed in detail later in this lesson. Popular add-ons include: Live IP Address Flashblock User Agent Switcher WOT Web of Trust Flash Killer Firebug Zotero disk cache Storage space on a computer hard disk used to temporarily store downloaded data. streaming media A continuous flow of data, usually audio or video files, that assists with the uninterrupted delivery of those files into a browser. How do plug-ins work? When a browser encounters a file type that is not directly supported, it launches a plugin application that retrieves the multimedia files from a server, similar to the way a browser retrieves standard Web pages. The files are then delivered to the client system for playback. Instead of loading the entire file at once, many plug-ins retrieve a small portion at a time and store the data in the local disk cache. Using a cache, the plug-in delivers just enough information to build a continuous stream of data, called streaming media, which eliminates transfer delays. For instance, when you listen to a Web audio file, you may be hearing one part of the file while the next part downloads in the background. If you download an entire file before playing it, you are playing non-streaming media. Plug-in appearance Files that have been interpreted by a plug-in appear in one of three ways, depending on the file type and additional HTML tags. Some files will not function if additional HTML attributes are set. Following are the three appearance modes: Full-screen The multimedia will completely fill the browser window's inner frame. Embedded The multimedia appears as part of a larger document, in which the media or media player is visible as a rectangular sub-portion of a page. This mode resembles an embedded GIF or JPEG image, except the media can be live and/or dynamic, and may have its own embedded functionality. Many videos, such as YouTube or news story videos, are usually embedded files. The video is played within the browser window, as shown in Figure 5-2.

10 5-10 Internet Business Associate Video displays in this area Figure 5-2: Embedded video Musical Instrument Digital Interface (MIDI) A standard computer interface for creating and playing electronic music. It allows computers to re-create music in digital format for playback. Hidden The multimedia and its players are not visible in the browser and run in the background. An example of a commonly hidden plug-in is a Musical Instrument Digital Interface (MIDI) player. New window The plug-in opens in a new window, completely separate from the browser. The plug-in functions as a stand-alone application. The browser appears largely the same despite the plug-in. Basic browser operations (such as navigation, history, file opening and so forth) apply to all pages, regardless of which plug-ins are required to view each page. Data Compression and Decompression Before exploring particular audio and video player plug-ins, you should understand the basic principles of data compression. Compression is the reduction in size of data files. Audio and video files are compressed before they are transferred across the Internet to shorten the amount of time required to download them. Once files are received at the client system, they are decompressed so that they can be played (viewed and/or heard). There are various ways to compress data, and many types of data can be compressed. You are probably already familiar with popular "zip" programs that compress text and images. Some image file formats such as GIF and JPEG are designed to reduce the size of image files. lossless compression A type of data file compression in which all original data can be recovered when the file is decompressed. lossy compression A type of data file compression in which some file information is permanently eliminated. Compression can be either lossy or lossless. With lossless compression, all the original data can be recovered when the file is decompressed. Lossless compression is used for compressing text and spreadsheet files, for example. The Graphics Interchange File (GIF) format provides lossless compression. Lossy compression permanently eliminates some of the information (especially redundant information). When the file is decompressed, only part of the original information is still there. Lossy compression is used for video and sound files, where certain amounts of information loss is hard to detect and is therefore not noticeable. The JPEG file format, which is used extensively for photographs on the Web, uses lossy compression. When you save an image file in JPEG format, you can specify how much loss you want to allow. Generally, you must find a balance between image quality and file size.

11 Lesson 5: Multimedia on the Web 5-11 codec A compression/ decompression algorithm used by modern video and audio player plugins. Compression is performed by a program that uses an algorithm to specify compression or decompression instructions for a given file. Multimedia players (such as RealPlayer, Windows Media Player and QuickTime player) and HTML5 use special algorithms called codecs to create streaming media. Codec is an abbreviation for compression/decompression. Media files on the Web are compressed, and when you download them, they must be decompressed so that you can play them. Several standard codec schemes are employed on the Internet today, and new ones are added regularly. Players are equipped with these standardized codec schemes; as new codecs become popular, you can update your player's store of codecs. The store of codecs is updated when you upgrade your plug-in. Plug-in Installation OBJECTIVE : Plug-ins, addons and viewers Although plug-in installation procedures are quickly becoming standardized, unpredictable results can occur. This uncertainty exists because so many different configurations are possible depending on the user's choice of browser, operating system and plug-in. The two ways to install plug-ins are online and offline. Online installation Online installation usually occurs with the browser open. Although certain Firefox plugin installation files support online installation, many must be installed offline. Internet Explorer also installs many plug-in types without prompting the user when unsupported file types are encountered. Offline installation Offline installation requires the user to download the plug-in file, quit the browser and start the installation file. When installation is complete, the computer may need to be restarted before the changes take effect. In the case of offline installation, you must read the installation instructions carefully before starting the download. Installing and updating plug-ins Chrome, Internet Explorer and Firefox include several native plug-ins. The plug-ins are automatically installed with the browser. As mentioned earlier, when you visit a Web site that requires a plug-in (or a more recent version of a plug-in you already have), you may be prompted to download and install it. To avoid interrupting your Web browsing to download a plug-in every time you need one, you can visit several download sites in advance and install the most recent versions of popular plug-ins. It is advisable to occasionally upgrade plug-ins from the appropriate vendor's site. Upgrades usually include increased functionality and security updates. CIW Online Resources Course Mastery Visit CIW Online at to take the Course Mastery review of this lesson or lesson segment. IBA Lesson 5 - Part A

12 5-12 Internet Business Associate Types of Plug-ins OBJECTIVE : Plug-ins, addons and viewers For many years, technology has allowed users to download and play back high-quality audio and video from the Internet. In the following pages, you will learn about several types of multimedia and their required plug-ins. Various plug-ins are available, and each one can handle different file types, with some overlap. For example, both QuickTime and Windows Media Player can play MP3 files. Most of these applications will prompt you to associate certain file types with the plug-in by default. The default association will display the plug-in icon next to the files of the associated type in Windows Explorer, and selecting an associated file will launch the default plug-in. However, you can still open a file using the non-default application. Adobe Flash Player The Adobe Flash Player allows browsers to view movies created with the Flash application. Flash movies offer full-screen navigation interfaces, are resizable to various display sizes and resolutions, and they can play as they download. vector graphics Resizable images that are saved as a sequence of vector statements, which describes a series of points to be connected. The Flash authoring software allows you to create animation by using vector graphics. Think of vector graphics as mathematical shapes. A vector graphic is saved as a sequence of vector statements, which describes a series of points to be connected. The graphics you are probably most familiar with, GIFs and JPEGs, are raster graphics, which are images that map bits directly to a display space (think of a grid of x and y coordinates on a display space). Raster graphics are pixel-based, and as such are much larger files than vector graphics. When the vector images are downloaded, they are rasterized (converted into raster images) as they arrive and the animation displays in the player. The advantages of using vector graphics are that the files are relatively small (resulting in shorter download time) and they are easily resized without affecting image quality. Flash files use an.swf file name extension. Flash has been ideal for the Internet; complex animations can be downloaded quickly because of their small file sizes. At the time of this writing, Google Chrome had Adobe Flash built in. Firefox and Internet Explorer require a manual installation. In the following lab, you will use the Flash Player with Mozilla Firefox. Suppose the marketing manager of your company wants to view Flash movies in his browser so he can decide whether to invest time and money to create similar products for the company Web site. You can download and install Adobe Flash Player in his browser so that he can view the files. Lab 5-1: Using Adobe Flash Player with Mozilla Firefox In this lab, you will navigate to the Adobe Web site, and download and install the Adobe Flash Player. Note: You may require access to an account with administrative permissions to install this software. 1. Open Firefox. 2. Enter the URL The Adobe Downloads page will appear, as shown in Figure 5-3.

13 Lesson 5: Multimedia on the Web 5-13 Figure 5-3: Adobe Downloads page 3. Click the Get Adobe Flash Player button to display the Adobe Flash Player installation page. The Adobe Flash Player download page appears. 4. Deselect the Yes, install McAfee Security Scan Plus optional check box. Click the Download Now button. 5. Click the Agree and Install Now button, if necessary. Firefox displays a dialog box similar to the one shown in Figure 5-4. Figure 5-4: Installing Adobe Flash Player 6. Click the Save File button to save the installation file to the Downloads folder on your hard drive and display the Downloads window, shown in Figure 5-5. The Downloads window confirms that the installation file was saved to your hard drive. Figure 5-5: Downloads window 7. In the Downloads window, double-click install_flashplayer.exe. The file name will vary depending on which version you are downloading. Click Run in the Security

14 5-14 Internet Business Associate Warning dialog box that appears asking if you want to launch the executable file. The User Account Control dialog box will appear. 8. In the User Account Control dialog box, click Yes to allow the program to make changes to the computer. 9. The Adobe Flash Installer will download and install the plug-in. You may be requested to close Mozilla Firefox in order to continue. Close Firefox and the Downloads window. Click the Retry button. 10. When the installation is complete, click Finish. 11. Now, you will explore the capabilities of the Flash Player. Open Firefox. 12. Enter the URL Click the Flash Player link. Explore the showcase to see how Web sites are using this technology. What did you notice about each site? What did you like or dislike? Does Flash enhance your Webviewing experience? 13. Click the link under the Site Of The Day heading. Does this site use the animation technologies well? 14. Close Firefox (close all tabs). Microsoft Silverlight Microsoft Silverlight is a software development tool used to write and run Internet applications. In order to run the applications in a browser, the Microsoft Silverlight plugin must be installed. Silverlight originally focused on streaming audio and video, but now supports graphics, animations and almost any multimedia. It can run in browsers that operate under Windows, Apple's OS X, and Windows Phone. Silverlight is Microsoft's response to Adobe Flash. In the following lab, you will install the Silverlight plug-in. Suppose a product development manager in your company wants to be able to play a Silverlight-created animation that highlights the company's new product during an upcoming meeting. You can install the Silverlight plug-in on the computer system in the conference room for her. Lab 5-2: Using the Silverlight plug-in with Google Chrome In this lab, you will use the Silverlight plug-in to view multimedia content in Chrome. Note: Students may require an account with administrative permissions to install this software. 1. Open Chrome and access the Silverlight Web site at Click the Download Now button. Take the necessary steps to download the latest version of the plug-in to your Downloads folder.

15 Lesson 5: Multimedia on the Web In the Downloads window, double-click the Silverlight executable file, and click Run to begin the installation process. In the User Account Control dialog box, click Yes to proceed with the download. 3. When the Silverlight Setup Wizard appears, read the license agreement and accept it by clicking the Install Now button. Upon completion, click Close. 4. Restart Chrome, as directed by the installation, for the changes to take effect. 5. Go to the Silverlight developer's showcase at shown in Figure 5-6. Explore the showcase to see how Web sites are using this technology. What do you notice about each site? What do you like or dislike? Does Silverlight enhance your Web-viewing experience? 6. Close Chrome. Figure 5-6: Silverlight showcase QuickTime A plug-in developed by Apple Computer for storing movie and audio files in digital format. Apple QuickTime QuickTime is a plug-in created by Apple Computer for running video and audio files. QuickTime is available for both Windows and OS X systems. This plug-in lets you see and hear QuickTime content in your browser window. It can be downloaded from Many samples, such as movie previews, can be viewed at the site after you download the product. The QuickTime plug-in works with existing QuickTime movies and other formats that can use a fast-start feature. This feature presents the first frame of the movie almost immediately and begins playing the movie before it has been completely downloaded, much like a streaming format. QuickTime Movie (MOV) Standard file format for Apple QuickTime; uses the.mov,.moov or.qt file name extension. QuickTime Movie The QuickTime Movie (MOV) file format was created by Apple and is supported by all QuickTime versions. Video, animation, text and sound are combined into one file. QuickTime files are identified by a.mov,.moov or.qt file name extension.

16 5-16 Internet Business Associate QuickTime VR QuickTime Virtual Reality (QTVR) is a virtual reality plug-in from Apple that is installed with QuickTime. It can expand a two-dimensional photograph into a three-dimensional image. 2-D and 3-D images can be explored in 360-degree panoramas and can include interactive elements. Today QTVR is usually used for panoramas. Figure 5-7 shows a QTVR panorama. Figure 5-7: QuickTime VR panorama For more information about QTVR, visit In the following lab, you will install the QuickTime plug-in. Suppose that the marketing team wants to compare QuickTime movies with Flash movies in order to decide which movie format to support on the corporate Web site. Flash is already installed on all corporate computers, but QuickTime is not. Lab 5-3: Using the Apple QuickTime plug-in with Mozilla Firefox In this lab, you will download and install QuickTime, and view a QuickTime movie. Note: Students may require an account with administrative permissions to install this software. 1. First, you will download the plug-in. Open Firefox and go to 2. Click the QuickTime Free Download button. 3. Ensure that your operating system is listed. Deselect the Keep Me Up To Date With Apple News, Software Updates check box, then click the Download Now button. Take the necessary steps to download the plug-in to your Downloads folder. 4. In the Downloads window, double-click QuickTimeInstaller.exe, and click Run to begin the installation process. If the Security Warning dialog box appears, click OK to proceed with the download. 5. When the QuickTime Installer appears, follow the instructions in the Installer to complete the installation. Accept the license agreement when prompted to do so. Click Finish when the installation is complete. Close the Downloads window. 6. View QuickTime movies at shown in Figure 5-8. Explore the showcase to see how Web sites are using this technology. What do you notice about each video? What do you like or dislike? Does QuickTime enhance your Web-viewing experience?

17 Lesson 5: Multimedia on the Web Close Firefox. Figure 5-8: Video showcase using QuickTime movies Windows Media Player The Microsoft Windows Media Player is a standards-based plug-in that plays streaming audio and video. It is installed with the Windows operating system. It can display both live and on-demand content. Windows Media Player is available for Windows and Apple OS X systems. Windows Media Player includes a feature that will automatically look for available updates, which can be found at You can also go directly to the Web site to download and install the update. The file name extensions normally associated with Windows Media Player include.wma (Windows media audio) and.wmv (Windows media video), and the player also supports several video and audio file formats (such as.avi,.mpeg,.midi,.wav) discussed later in this lesson. In the following lab, you will view movie clips using the Windows Media Player plug-in. Suppose your company's marketing manager wants to view a competitor's Web site movies, which are in WMV format. The IT supervisor has assigned you to show the marketing manager the easiest way to do this by using the Windows Media Player plug-in that is included with Windows. Lab 5-4: Using the Windows Media Player plug-in with Chrome In this lab, you will use the Windows Media Player plug-in to view movies. 1. Open Chrome and go to to display available movie clips at the Windows Media Guide.

18 5-18 Internet Business Associate 2. Explore the site and click the free movie clips. Some movie clips will load directly in the browser, whereas others will prompt you to specify the application in which to load the clip. If you click a movie clip that does not load directly in the browser, the dialog box shown in Figure 5-9 will appear. Figure 5-9: Specifying where to open movie clip 3. Ensure that the Open With drop-down list specifies the default Windows Media Player option, then click OK. 4. Windows Media Player opens in a new window, separate from Chrome, and plays the clip you selected. The window will resemble Figure 5-10, depending on the video you chose. Figure 5-10: Windows Media Player window 5. When you are finished viewing the movie clip, close the Windows Media Player window and the Chrome window. If the Downloads window opened along with the Windows Media Player window, close it as well. How does viewing movie clips in Windows Media Player compare with viewing clips in QuickTime and in Flash?

19 Lesson 5: Multimedia on the Web 5-19 Firefox Add-Ons OBJECTIVE : Plug-ins, addons and viewers Firefox add-ons are extensions and plug-ins you can use to add new features to or modify the behavior of existing features for the Firefox Web browser to extend its functionality. Thousands of add-ons exist at the Mozilla Add-Ons for Firefox page ( Examples include: Live IP Address shows your actual IP address. Useful when troubleshooting connectivity to the Internet. Flashblock allows you to manage how Flash applications run in your browser. User Agent Switcher can make Firefox appear to Web servers as if it were another browser, such as Internet Explorer or Opera. WOT - Web of Trust allows you to determine whether a Web site you are visiting is safe. Firebug Turns your Web browser into a development environment so that you can edit HTML, use Cascading Style Sheets and insert code such as JavaScript. Zotero Organizes the data that you download so you can research and evaluate it more effectively. In the following lab, you will download several Firefox add-ons. Suppose you are using Firefox as your default browser and you want to customize it to more closely suit your browsing habits. Firefox add-ons extend the browser's functionality and allow you to personalize your browsing experience. Lab 5-5: Using Firefox add-ons In this lab, you will download several Firefox add-ons. 1. Open Firefox and go to to display the Firefox Add-ons page, shown in Figure You can select a category on the left side of the page to view the add-ons that correspond to the category you select, or you can use the Search For Add-Ons text box to specify a particular add-on. Note: Firefox add-ons can also be accessed using the Firefox Add-ons manager. Select Firefox Add-ons. The interface is different, but the functionality is the same.

20 5-20 Internet Business Associate Figure 5-11: Add-ons Web page Firefox 2. Click in the Search For Add-Ons text box, type Live IP Address, then press ENTER. The Live IP Address add-on will appear at the top of the list of add-ons. 3. Click the Add To Firefox button. In the Software Installation dialog box that appears, click Install Now. If a security warning appears, select Install Now. 4. When the add-on is finished downloading, you will be prompted to restart Firefox to complete the installation process. Click Restart Firefox. 5. To see the Live IP Address add-on, you must enable the Add-On bar. Click Firefox Options Add-on Bar. Your IP address will appear in the bottom-right portion of your browser window. 6. In the Search For Add-Ons text box, select the text Live IP Address, type Flashblock, then press ENTER. The Flashblock add-on will appear at the top of the list of add-ons. 7. Click the Add To Firefox button. In the Software Installation dialog box that appears, click Install Now, then restart Firefox when prompted to do so. 8. When the Firefox window reopens, go to a Flash-intensive Web site such as Click a link to one of the customer showcase sites. 9. Notice the Flash symbol that appears on the page, shown in Figure Flashblock replaces Flash content with placeholders that you can click to download and view the Flash content.

21 Lesson 5: Multimedia on the Web 5-21 Figure 5-12: Web page with blocked Flash content 10. Click a Flash symbol placeholder to download and view the Flash content. 11. You can disable an add-on after you have installed it. Select Firefox Add-Ons to display the Add-ons Manager. Click the Extensions link. The two add-ons you just installed appear (Figure 5-13). Figure 5-13: Add-on extensions Firefox 12. Select Flashblock, click the Disable button, then restart Firefox. 13. When the Firefox window opens, select the tab containing the customer showcase site. Notice that the Flash content automatically plays. If you want, you could redisplay the Add-ons Manager and click the Enable button to re-enable Flashblock. 14. If time permits: Install additional Firefox add-ons to customize your browser to your preferences. 15. Close Firefox. Now that you see how easy it is to download and install Firefox add-ons, what do you think of them? Can you see how the add-ons can enhance your browsing experience? CIW Online Resources Movie Clips Visit CIW Online at to watch a movie clip about this topic. Lesson 5: There s an Add-On for that

22 5-22 Internet Business Associate OBJECTIVE : Plug-ins, addons and viewers viewer A scaled-down version of an application; designed to view and print files. Types of Viewers A viewer is necessary to retrieve certain files when the program needed to open a file type is not installed on your computer. Viewers are scaled-down versions of applications and are usually available free of charge. They do not have the full application's functionality. Often, the viewer will allow you to view and print documents, but not edit them. Because viewer files are much smaller than program files, they are helpful when disk space is limited, or when the full program is unavailable. In this section, you will learn about two important viewers. Microsoft PowerPoint Viewer The Microsoft PowerPoint Viewer is a helpful tool for businesspeople who give slide presentations from laptop computers, or for users who have earlier versions of PowerPoint on their computers and must present slide shows created in newer versions. Installing the most recent version of PowerPoint Viewer ensures the ability to present a slide show created with any version of PowerPoint. PowerPoint Viewer can be downloaded and distributed freely from the Microsoft Web site ( You can also view PowerPoint slides directly within your browser. These file types are typically associated with your browser upon installation of either the browser or a new program. Adobe Reader Adobe Systems Incorporated offers a free viewer that can read files created in Adobe Acrobat. Because many files on the Web have been created in Adobe Acrobat, this viewer can be found on thousands of corporate Web pages. Portable Document Format (PDF) A file format that can be transferred across platforms and retain its formatting; designated by the file name extension.pdf. Portable Document Format (PDF) Adobe created the Portable Document Format (PDF), a general file format that can be created and read on any computer, regardless of the local operating system. These files are suitable for transmission over the Web. Because of their high compression and platform independence, PDF files take minimal time to download, even with slower connections. They also retain formatting information through all platforms. In the following lab, you will use Adobe Reader with Mozilla Firefox. Suppose the manager for a new Research and Development (R&D) project wants all the department personnel to be able to download and read PDF files. You can install Adobe Reader on the R&D team members' computers to enable each of them to do this. Lab 5-6: Installing and using Adobe Reader with Mozilla Firefox In this lab, you will download and install the current version of the free Adobe Reader, then use it to view PDF files in Firefox. Note: Students may require an account with administrative permissions to install this software. 1. First, you will download and install Adobe Reader. Open Firefox and go to to display the Adobe home page.

23 Lesson 5: Multimedia on the Web Scroll down and click Adobe Reader in the Download section. 3. Deselect the Yes, install McAfee Security Scan Plus optional check box if it appears. Click the Download Now button to begin the download process. Take the necessary steps to download the plug-in to your Downloads folder. 4. In the Downloads window, double-click install_reader10_en_aih.exe. The file name will vary depending on the version you download. Click Run to begin the installation process. If the User Account Control dialog box appears, click Yes to proceed with the installation. 5. When the Adobe Reader Installer is complete, click Finish. Close the Downloads window. 6. Next, you will read a PDF file in Firefox using Adobe Reader. Go to to visit the CIW Web site. 7. Click the Certifications link. In the left navigation pane, click the Web Foundations Series link, then click the Web Foundations Associate link to display the CIW Web Foundations Associate page. 8. On the right side of the page (in the Quick Reference area), click the Exam Objectives link. Because this is the first time you are opening Adobe Reader, the License Agreement window appears. Click the Accept button to accept the terms of the agreement. The PDF file will now open in your browser window, as shown in Figure Figure 5-14: PDF file in Adobe Reader Firefox 9. Use the Adobe Reader toolbar buttons to navigate through the document. Try to edit the document. Can you? 10. Close Firefox (close all tabs).

24 5-24 Internet Business Associate OBJECTIVE : Document and multimedia file formats Miscellaneous File Formats Files that you might download or use with plug-ins and streaming technologies include the following: Video Audio Graphics Documents Video files Some of the most commonly used video files on the Web today include (but are not limited to) files with the following file name extensions: Audio Video Interleave (AVI) Standard Windows file format for video files..avi Audio Video Interleave (AVI) files are standard video files for Windows. They are supported by Windows Media Player in Internet Explorer and by LiveVideo in Firefox. LiveVideo allows users to instantly view AVI movies embedded in Web pages, without downloading the files for later playback..mov the standard format for QuickTime movies, and the Apple OS X native movie platform. Another file name extension for QuickTime movies is.qt. Moving Picture Experts Group (MPEG) High-quality audio and video file compression format..mp4 MPEG-4 is a standard format for video on the Internet. The Moving Picture Experts Group (MPEG) is a standard for digital audio and video compression that provides extremely high quality and resolution. MP4 is supported by HTML5 video..ogg video format designed for HTML5 video. It is royalty-free and can be distributed without licensing fees..webm a royalty-free, open video and audio format designed for HTML5 video. The WebM format and its development is sponsored by Google. Audio Interchange File Format (AIFF) High-quality audio format developed by Apple Computer. AU Audio file format used by UNIX servers, the majority of Web servers. Most Web browsers can read AU. Waveform (WAV) Windows standard format for audio files. Audio files Firefox and Internet Explorer include native, or built-in, support for standard audio formats such as Audio Interchange File Format (AIFF), AU, MIDI (discussed earlier in this lesson) and Waveform (WAV). Users can play sound files embedded in HTML documents using their browsers, which automatically identify and play most major formats embedded in or linked to a Web page. Through connections to applications such as RealPlayer and Windows Media Player, browsers can also play MP3 files and other formats. The sound files you are likely to encounter on the Web include:.au audio format used by UNIX servers. Most browsers provide built-in support for AU files..aiff Audio Interchange File Format (AIFF), developed by Apple Computer, offers high-quality audio. Most browsers provide built-in support for AIFF files. The same programs that play AU files can be used to play AIFF files.

25 Lesson 5: Multimedia on the Web 5-25 MPEG-1 Audio Layer-3 (MP3) Popular compression standard for audio files; retains most of the sound quality of the source. Ogg Vorbis (.ogg) A free, open-source alternative to the MP3 compression format for audio files; creates smaller, faster downloading files..mp3 (abbreviation for MPEG-1 Audio Layer-3), a format for compressing audio files that uses the MPEG-1 standard and is supported by HTML5 audio. The MP3 format compresses audio files to one-twelfth the original size, shortening download times considerably. The original sound quality is preserved throughout the compression and decompression process. MP3 files are non-streaming (you must download them before you can play them). To listen to an MP3 file, you must download an MP3 player. Windows operating systems have built-in MP3 players. Many MP3 players are available as shareware and freeware on the Web. Any time a developer creates an application that uses the MP3 format, he or she must pay a license fee to use this format..ogg Ogg Vorbis, a free, open-source alternative to the MP3 format. In addition to not requiring a license, the Ogg Vorbis format uses a somewhat more efficient compression algorithm. Ogg Vorbis is discussed in more detail in the following section. It is supported by HTML5 audio..wav Waveform (WAV), the native sound format for Windows. Most browsers provide built-in support for WAV files. It is supported by HTML5 audio. Following is a brief list of software applications that can play audio files: Nullsoft Winamp ( plays a variety of formats Windows Media Player ( US/windows/products/windows-media) also supports many formats XMMS ( for UNIX-based systems (e.g., Ubuntu Linux) Vorbix ( for the Ogg Vorbis format on UNIX systems Ogg Ogg is a free, open-source alternative to the MP3 audio format (which is proprietary and licensed) and the MP4 video format. It uses the.ogg file name extension and is maintained by the Xiph.Org Foundation. The audio format is specifically called Ogg Vorbis. The Ogg format uses a somewhat more efficient compression algorithm than MPEG. Also, the creators of this format determined that certain frequencies can be dropped (lost) without affecting audio or video quality. Therefore, files are smaller, download faster, and sound as good as other formats. Windows Media Player and most Windows multimedia players do not natively support Ogg. However, you can load DirectShow filters to decode Ogg in them. DirectShow filters can be found at the Xiph.org site ( On Windows systems, the following players support Ogg files after DirectShow is installed: Windows Media Player Media Player Classic Core Media Player RealPlayer

26 5-26 Internet Business Associate Several Windows players do not require DirectShow. These players support Ogg by default: Winamp 5 and higher VLC media player On UNIX/Linux, use the following players for Ogg files: XMMS VLC media player For more information about the Ogg format, consult the Xiph.org site ( and the Ogg Vorbis site ( In the following lab, you will enable Windows Media Player to view Ogg Vorbis files. Suppose you have accessed a site that contains songs you want to hear, but they are all in the Ogg Vorbis format. You want to use the Windows Media Player that comes with Windows Vista. How can you view the files? Lab 5-7: Viewing Ogg Vorbis files in Windows Media Player In this lab, you will install the DirectShow filter required for Windows Media Player to play Ogg Vorbis files, then use the player to play a sample file. 1. First, you will install the DirectShow filter. Note: To save time, the DirectShow filter is provided with the supplemental files in the C:\CIW\Internet\Lab Files\Lesson05 folder. 2. Before you install the DirectShow filter, you must remove any existing Ogg Vorbis codecs. Go to Start Control Panel Programs Programs And Features. The Uninstall Or Change A Program window appears. Remove any Ogg codecs, if necessary. Close the Control Panel. 3. Ensure that the Windows Media Player is closed. 4. Open Windows Explorer and go to the C:\CIW\Internet\Lab Files\Lesson05 folder. Double-click opencodecs_ exe. 5. In the User Account Control dialog box that appears, click Yes. The Open Codecs Setup Wizard will appear. Take the steps necessary to complete the steps in the Wizard to install the codecs. Accept all defaults. 6. Click Finish when the installation is complete. Close the Notepad window that appears at the end of the installation process. 7. For the remainder of this lab to function properly, Windows Media Player must be your default audio player for Ogg files. Go to Start Control Panel Programs Default Programs, then click the Associate a file type or protocol with a program link. Scroll down and select the.ogg file name extension. Click Change Program, click Windows Media Player, then click OK. Repeat for the.oga file name extension, if necessary. When finished, click Close.

27 Lesson 5: Multimedia on the Web Next, you will view Ogg Vorbis files in Windows Media Player. Open Firefox and go to to visit the Vorbis.com site's music page, shown in Figure Notice that five sample tracks are available. Figure 5-15: Vorbis.com's music page 9. Click a link for any of the Ogg Vorbis tracks. One of two responses will occur: Windows Media Player will open and play the track, as shown in Figure Skip to Step 11. If it does not play, an Opening dialog box may appear. You must ensure that Windows Media Player is selected in the Open With drop-down list, then click OK. An alert message may appear stating that Windows Media Player does not recognize the file name extension of.ogx (the x is a variable). It will ask if you are sure the file is from a trustworthy source, and if you want to play it in Windows Media Player. If this message appears, select the check box for Don't ask me again for this extension (.ogx), as shown in Figure Figure 5-16: Configuring Windows Media Player to play.ogg files 10. Click Yes. Windows Media Player will open and play the track, as shown in Figure 5-17.

28 5-28 Internet Business Associate Figure 5-17: Playing an Ogg Vorbis track in Windows Media Player 11. Close the Windows Media Player window and the Firefox window. Converting media file formats For many types of video and audio files, proprietary formats are not cross-compatible. For instance, you cannot play a RealMedia file with Windows Media Player. Several shareware programs can convert various types of files. Video type conversion programs include the Free Video Converter Factory ( HAMSTER soft ( and Freemake Video Converter ( Audio type conversions are numerous. A few examples are MP3 to WAV, WAV to various compressed formats, or even one compressed format to another, such as MP3 to Ogg. For example, oggdec (an Ogg Vorbis tool) decodes an Ogg Vorbis file to a WAV file. Converting file formats that use lossy compression does not yield the best sound quality. Visit or to explore other tools you can use to convert media files. Graphics files Standard formats for graphics files use the following file name extensions. All of these formats can be viewed in browsers, and you can use several graphics programs (such as Photoshop or Paint Shop Pro) to modify and convert these files to other formats. Portable Network Graphics (PNG) An open source graphical image file format created to replace GIFs..png Portable Network Graphics (PNG) has become an Internet standard for graphics. It is a free open-source file format that can support 32-bit color palettes (nearly all colors) for graphics and photographs. PNG uses a bitmap format and was developed to replace the patented and limited GIF format.

29 Lesson 5: Multimedia on the Web 5-29 Graphics Interchange Format (GIF) A graphical image file format commonly used in HTML documents. Joint Photographic Experts Group (JPEG) A graphical image file format commonly used for photographs. Tagged Image File Format (TIFF) Commonly used graphic file format, developed by Aldus Corporation; uses the.tif or.tiff file name extension. Encapsulated PostScript (EPS) File format used for importing and exporting graphics..gif Graphics Interchange Format (GIF), previously one of the most common graphics file formats on the Internet. It has a patent, so anyone creating software programs that produce GIF files must pay a royalty. GIF is a bitmap format that uses lossless compression. It supports various resolutions, but is limited to 256 colors and is used most effectively for drawings and illustrations, rather than for photographs..jpg or.jpeg or.jfif Joint Photographic Experts Group (JPEG), a format widely used for photographs and complex graphics. This format supports 16 million colors and uses lossy compression. JPEG files can be relatively small. However, the developer must decide how much compression to use. The more compression, the smaller the file size, but the lower the image quality. The JPEG format does not work well with line drawings because not much data can be discarded during the lossy compression process, and the images lose sharpness and clarity..tif or tiff developed by the Aldus Corporation, which is now Adobe Software. Tagged Image File Format (TIFF) is a popular, customizable graphic format commonly used for medical imaging and desktop publishing. TIFF supports grayscale, 8-bit and 24-bit color, and monochrome formats. TIFF files are highresolution and very large in file size..ps PostScript (PS) files are written in a page description language so they are unreadable, and are designed for printing on PostScript printers..eps Encapsulated PostScript (EPS) is a file format that you can use to import and export graphic files between operating systems and applications. EPS is standard in the publishing industry. Whereas a PostScript file only has the instructions that determine the display of the graphic, an EPS file actually contains the bitmap information for the graphics file. This additional data allows EPS files to display an alternative bitmap graphic for previewing. EPS formats EPS provides three preview formats for graphics: PICT for Apple OS X systems TIFF for Windows-compatible computers EPSI, which is platform-independent Most of the time, the EPSI format is used to transfer a graphic from a graphics-editing application (such as Adobe Photoshop) into a page-layout application (such as Adobe PageMaker). EPSI is necessary because each application tends to use its own format. EPSI acts as an intermediary that ensures no information will be lost during conversion from one format to another. Document files Some of the common document file formats you may download from the Internet (or your company's intranet) use the following file name extensions:.txt a plain (ASCII) text file. These files can be viewed in your browser, or with a Word processor or text editor..pdf As you learned earlier in this lesson, PDF files can be read on any computer, regardless of the operating system. You need Adobe Reader to view PDF files, and a full version of Adobe Acrobat to create or modify PDF files..docx or.doc These files are usually created with Microsoft Word for Windows.

30 5-30 Internet Business Associate odt These files are usually created with Open Office Writer. Rich Text Format (RTF) Portable text file format created by Microsoft that allows image insertion and text formatting; an almost universal format..rtf Rich Text Format (RTF) was developed by Microsoft. Using RTF, you can insert images and format text. RTF is compatible with many operating systems and applications, including most OS X and Windows word processors. Most applications allow you to save files in multiple formats easily. For example, in Microsoft Word, you can select File Save As, then select PDF, RTF, DOC, DOCX, ODT, or TXT as the document type. CIW Online Resources Online Exercise Visit CIW Online at to complete an interactive exercise that will reinforce what you have learned about this topic. Exercise 5-2: File formats OBJECTIVE 1.5.7: Files and Web browsers Downloading Files with a Browser You can use various methods to download files from the Web using your browser. You can download Web pages (HTML files), image files, compressed files (ZIP files), various document types, MIDI files and so forth. However, remember that although you can download many things, that ability does not always make it acceptable to do so. Copyright infringement Keep in mind that copyright laws protect original works of authorship online as well as in print. Works of authorship include literary works (including computer programs); musical works; pictorial, graphical and sculptural works; motion pictures and other audiovisual works; sound recordings; and architectural works. Downloading songs and movies from the Internet without permission or payment is an illegal use of copyrighted material. Many photos and other images found on Web sites include copyright information or a request that you do not copy the work. If you want to use someone's copyright-protected material, you must contact the copyright owner and ask for permission. If you are granted permission to use the copyrighted work, the copyright holder determines the terms of use. For instance, there may be no cost, but you may be required to credit the owner for the work. If you use someone else's copyrighted material without obtaining permission, you are committing copyright infringement, which is a punishable crime. Saving Web site content You can save entire Web pages or elements of a Web page to your hard disk. You can choose different Save options depending on the elements you want to save. For example, you would use different commands to save an entire Web page than you would to save a graphic from a Web page. When saving a Web page to hard disk, most browsers save all related images, fonts and scripts referenced by the HTML on the page. You can open the page in your browser even when you are not connected to the Internet. When you download files to your hard disk, you are able to specify a destination directory. Be sure to remember where you store your downloaded files so that you can

31 Lesson 5: Multimedia on the Web 5-31 easily locate them when you are offline. In the next lab, you will save downloaded files to your class Downloads folder. You can also copy and paste text and images from a Web page into various types of documents, such as word-processing files or graphics files. Select the text and images you want to copy, then copy them to the Clipboard. Open the application into which you want to paste the text and/or images, then paste them into a new document. In the following lab, you will download and store Web site content using Mozilla Firefox. Suppose the marketing director of your company wants to study a page from a competitor's Web site on his laptop over the weekend without having to access the Internet to do so. You can download and save the Web page to the laptop's hard drive, giving the manager access to all the images, fonts and scripts. Lab 5-8: Downloading and storing Web site content using Mozilla Firefox In this lab, you will use Firefox to save Web site content using various methods. 1. First, you will save an entire Web page. Open Firefox and go to to visit the CIW Web site. 2. Select Firefox Save Page As to display the Save As dialog box, shown in Figure Notice that the default location in which to save files is your Downloads folder. Also notice that the file type is an.htm file. Figure 5-18: Save As dialog box 3. Click the Save button to save the Web page as a file on your hard drive. Close the Downloads window. 4. Next, you will save an image from the Web site to your hard drive. Go to any page, right-click any graphic on the page, then click Save Image As to display the Save Image dialog box, shown in Figure Notice that the file type is an image (.gif,.jpg, etc.) file. Figure 5-19: Save Image dialog box

32 5-32 Internet Business Associate 5. Click the Save button to save the image file to your hard drive. Close the Downloads window. 6. Next, you will view and then download a PDF file. Click the Certifications link, then the Web Foundations Series link, and then the Internet Business Associate link. The CIW Internet Business Associate page will appear. 7. On the right side of the page (in the Quick Reference area), click the Exam Objectives link to display the PDF file in your browser window. 8. Select Firefox Save Page As to display the Save As dialog box. Notice that the file type is a.pdf file. Click the Save button to save the PDF page as a file on your hard drive. Close the Downloads window. 9. Close the PDF tab in the Firefox window. 10. Next, you will download a PDF file without viewing it first. In the Quick Reference area, right-click the Course Description link, then click Save Link As to display the Enter Name Of File To Save To dialog box. Notice that the file type is a.pdf file. Click the Save button to save the PDF page as a file on your hard drive. 11. Finally, you will examine downloaded files. Close the Downloads window, then close Firefox. 12. Open Windows Explorer, then navigate to the <username>/downloads folder. Notice that the files you downloaded over the course of this and the preceding lessons are located here. 13. Double-click any of the PDF files to open the file in an Adobe Reader window. Close the Adobe Reader window. 14. Close all windows and redisplay the Desktop. CIW Online Resources Course Mastery Visit CIW Online at to take the Course Mastery review of this lesson or lesson segment. IBA Lesson 5 - Part B

33 Lesson 5: Multimedia on the Web 5-33 Case Study The Right Tools for the Job Tomas is responsible for setting up and maintaining employee workstations at his company. Next week, Amanda will begin working in the marketing department for the company. In addition to the standard company setup, Amanda needs the equipment necessary to view and hear various sound and animation files so that she can evaluate their quality. Also, she will routinely review PDF files that are posted to the company extranet. As Tomas sets up Amanda's workstation, he installs the following components and plug-ins: A sound card and speakers so she can hear sound files Adobe Flash Player to allow her to view animation Adobe Reader to allow her to view PDF files * * * As a class, discuss this scenario and answer the following questions: What, if any, additional components or plug-ins can Tomas install to help Amanda perform her job functions? What security risks should Tomas discuss with Amanda regarding the content she may be viewing?

34 5-34 Internet Business Associate Lesson Summary Application project What similarities and differences do you notice between the Google Chrome, Mozilla Firefox and Windows Internet Explorer browsers when using plug-ins such as QuickTime? Do you prefer one browser to the other? Could plug-ins help your company's Web-based clients? What other types of multimedia files might you use that require plugins? How will HTML5 affect plug-in use in the future? Another popular plug-in is the MP3 player. Locate, download and install an MP3 player, then download license-free MP3 content and play it. Is the MP3 player you installed similar to other plug-ins you used in this lesson? Would you consider it a plug-in or a stand-alone application? Skills review In this lesson, you learned about active content, and the programming and scripting languages used to create it, such as C, C++, C#, Java, JavaScript, ActiveX, JScript and VBScript. You learned about the goal of HTML5 to eventually replace browser plug-ins. You were introduced to several widely used Web browser plug-ins, and you saw how they can enhance browser performance and interactivity. You also gained hands-on experience downloading and installing plug-ins, and you navigated to several sites on the Web that contained functional plug-in demonstrations. Finally, you downloaded and stored files to your hard drive using your browser. Now that you have completed this lesson, you should be able to: 1.5.7: Download and store files using a Web browser : Install and upgrade common plug-ins, add-ons and viewers (e.g., Adobe Reader, Adobe Flash Player, Microsoft Silverlight, Windows Media Player, Apple QuickTime) and identify their common file name extensions : Use document and multimedia file formats, including PDF, PNG, RTF, PostScript (PS), AVI, MPEG, MP3, MP4, Ogg. Convert between file formats when appropriate. CIW Practice Exams Visit CIW Online at to take the Practice Exams assessment covering the objectives in this lesson. IBA Objective 1.05 Review Note that some objectives may be only partially covered in this lesson.

35 Lesson 5: Multimedia on the Web 5-35 Lesson 5 Review 1. What was the first scripting language developed exclusively for online content design? 2. Briefly describe Java. 3. Name some of the functions of Java applets. 4. What are the four ways in which a plug-in can appear within a browser? 5. What must you do in order to run Ogg files in Windows Media Player?

36 5-36 Internet Business Associate

37 CIW Lesson 5 Vocabulary: Multimedia on the Web 1. Object: An element on a Web page that contains data and procedures for how that item will react when activated. On a Web page, an object is typically a multimedia presentation. 2. object-oriented programming (OOP): Programming concept based on objects and data and how they relate to one another, instead of logic and actions; C++ and Java are OOP languages. 3. Java: An object-oriented Programming Language developed by Sun Microsystems that is fully cross-platform functional. 4. Applets: Small programs written in Java, which are downloaded as needed and executed within a Web page or Browser 5. Dynamic: Always changing. 6. Interactive: The characteristic of some hardware and software, such as computers, games and multimedia systems, that allows them to respond differently based on a user's actions 7. event-driven: Reacting to particular user actions or the browser's completion of a specific task. 8. LiveScript: The Netscape developed Scripting language that was the predecessor to JavaScript 9. ActiveX: An open set of technologies for integrating components on the Internet and within Microsoft Applications 10. Visual Basic Script (VBScript):Scripting language from Microsoft derived from Visual Basic; used to manipulate ActiveX scripts. 11. Visual Basic: The Microsoft graphical user interface (GUI) programming language used for developing Windows applications. A modified version of the BASIC programming language. 12. Geolocation: An HTML5 Application Programming interface that allows developers to retrieve the geographical location information for a client-side device. 13. cascading style sheets (CSS): Style sheet language that provides the formatting and "look" of a Web page or document written in a markup language. 14. plug-in: A program installed in the browser to extend its basic functionality. Allows different file formats to be viewed as part of a standard HTML document 15. disk cache: Storage space on a computer hard disk used to temporarily store downloaded data. 16. streaming media A continuous flow of data, usually audio or video files, that assists with the uninterrupted delivery of those files into a browser 17. Digital Interface (MIDI): A standard computer interface for creating and playing electronic music. It allows computers to re-create music in digital format for playback. 18. Lossless Compression: A type of data file compression in which all original data can be recovered when the file is decompressed. 19. lossy compression: A type of data file compression in which some file information is permanently eliminated. 20. Codec: A compression/ Decompression algorithm used by modern video and audio player plugins.

38 CIW Lesson 5 Vocabulary: Multimedia on the Web 21. vector graphics: Resizable images that are saved as a sequence of vector statements, which describes a series of points to be connected. 22. QuickTime: A plug-in developed by Apple Computer for storing movie and audio files in digital format. 23. QuickTime Movie (MOV): Standard file format for Apple QuickTime; uses the.mov,.moov or.qt file name extension 24. viewer: A scaled-down version of an application; designed to view and print files 25. Portable Document Format (PDF): A file format that can be transferred across platforms and retain its formatting; designated by the file name extension.pdf. 26. Audio Video Interleave (AVI):Standard Windows file format for video files. 27. Moving Picture Experts Group (MPEG): High-quality audio and video file compression format 28. Audio Interchange File Format (AIFF): High-quality audio format developed by Apple Computer. 29. AU: Audio file format used by UNIX servers, the majority of Web servers. Most Web browsers can read AU. 30. Waveform (WAV): Windows standard format for audio files. 31. MPEG-1 Audio Layer-3 (MP3): Popular Compression standard for audio files; retains most of the sound quality of the source. 32. Ogg Vorbis (.ogg): A free, open-source alternative to the MP3 compression format for audio files; creates smaller, faster downloading files. 33. Portable Network Graphics (PNG): An open source graphical image file format created to replace GIFs 34. Graphics Interchange Format (GIF): A graphical image file format commonly used in HTML documents. 35. Joint Photographic Experts Group (JPEG): A graphical image file format commonly used for photographs. 36. Tagged Image File Format (TIFF): Commonly used graphic file format, developed by Aldus Corporation; uses the.tif or.tiff file name extension. 37. Encapsulated PostScript (EPS): File format used for importing and exporting graphics 38. Rich Text Format (RTF): Portable text file format created by Microsoft that allows image insertion and text formatting; an almost universal format.

39 Internet Business Associate Glossary-1 Glossary 4G (fourth generation) Wireless phone network capable of delivering high-speed broadband Internet access to mobile devices. 4G mobile hotspot A device that connects a wireless local area network to a wireless phone network at broadband speeds. absolute URL A URL that gives the full path to a resource. ActiveX An open set of technologies for integrating components on the Internet and within Microsoft applications. Advanced Research Projects Agency (ARPA) A U.S. Department of Defense agency that created the first global computer network. Advanced Research Projects Agency Network (ARPANET) A computer network, funded by ARPA, that served as the basis for early networking research and was the backbone during the development of the Internet. Ajax A programming methodology that uses a number of existing technologies together and enables Web applications to make incremental updates to the user interface without the need to reload the browser page. anti-virus software Software that scans disks and programs for known viruses and eliminates them. applets Small programs written in Java, which are downloaded as needed and executed within a Web page or browser. assignment The appointment of a specific resource to a specific task. assumption A factor that is considered to be real or certain for planning purposes. asymmetric encryption An encryption method in which two keys (a private key and a public key) are used to encrypt and decrypt a message. Also known as public-key encryption. attachment A file that is sent with an e mail message. AU Audio file format used by Unix servers, the majority of Web servers. Most Web browsers can read AU. Audio Interchange File Format (AIFF) Highquality audio format developed by Apple Computer. Audio Video Interleave (AVI) Standard Windows file format for video files. authentication The process of verifying the identity of a user who logs on to a system, or the integrity of transmitted data. backbone The highest level in the computer network hierarchy, to which smaller networks typically connect. bandwidth The amount of information, sometimes called traffic, that can be carried on a network at one time. The total capacity of a line. Also, the rate of data transfer over a network connection; measured in bits per second. binary file A file containing data or instructions written in zeros and ones (computer language). blackhole list A published list of IP addresses known to be sources of spam. blog Short for "Web log." A collection of personal thoughts posted on a public Web site. Blogging is the act of adding entries to a blog. Boolean operator A symbol or word used in Internet searches to narrow search results by including or excluding certain words or phrases from the search criteria. browser e mail E mail programs such as Outlook Express and Opera Mail that come bundled with a Web browser and with which they may be integrated. call center A centralized office used for the purpose of processing a large volume of requests by phone. CAPTCHA (Completely Automated Public Turing Test to Tell Computers and Humans Apart) A test that uses a word-verification graphic designed to differentiate humans from automated senders during online transactions. cascading style sheets (CSS) Style sheet language that provides the formatting and "look" of a Web page or document written in a markup language. change management The process, tools and techniques that help people implement changes to achieve a desired outcome. client An individual computer connected to a network. Also, a system or application (such as a Web browser or user agent) that requests a service from another computer (the server) and is used to access files or documents.

40 Glossary-2 Internet Business Associate cloud computing Software, infrastructure and platform services that are hosted by a remote data center and provided to organizations over the Internet. codec A compression/ decompression algorithm used by modern video and audio player plug-ins. collective intelligence The ability of a group to exhibit a greater degree of intelligence by solving problems collaboratively compared to the intelligence of an individual member. common field A field contained in two or more database tables that forms a connection between the tables. Common Gateway Interface (CGI) A program that processes data submitted by the user. Allows a Web server to pass control to a software application, based on user request. The application receives and organizes data, then returns it in a consistent format. constraint A factor, such as budget or time, that limits a project manager's options. contact center A call center that allows consumers to contact agents via avenues other than by telephone. convergence The integration of telephony and data technologies. cookie A text file that contains information sent between a server and a client to help maintain state and track user activities. Cookies can reside in memory or on a hard drive. crowdsourcing A problem-solving model in which a task ordinarily performed by one person is outsourced to a large group or community in order to obtain and analyze large amounts of data. database A collection of data that can be sorted and searched using search algorithms. database administrator An individual who is responsible for the maintenance and security of an organization's database resources and data. database management system (DBMS) A program used to store, access and manipulate database information. dead link A hyperlink that, when clicked, sends a Web site visitor to a page or resource that does not exist on the server. decryption The process of converting encrypted data back to its original form. deep URL A URL that includes a path past the domain into the folder structure of a Web site. digital certificate A password-protected, encrypted data file containing message encryption, user identification and message text. Used to authenticate a program or a sender's public key, or to initiate SSL sessions. Must be signed by a certificate authority (CA) to be valid. digital signature An electronic stamp added to a message that uniquely identifies its source and verifies its contents at the time of the signature. Digital Subscriber Line (DSL) A high-speed direct Internet connection that uses all-digital networks. disk cache Storage space on a computer hard disk used to temporarily store downloaded data. domain name An IP address represented in words. domain name server A server that resolves domain names into IP addresses. Domain Name System (DNS) A system that maps uniquely hierarchical names to specific Internet addresses. dynamic Always changing. e mail client An e mail program that is independent of any specific Web browser, and that you can use to send e mail messages. emoticon A combination of characters that, when read sideways, helps convey emotion in an e mail message. Encapsulated PostScript (EPS) File format used for importing and exporting graphics. encryption A security technique designed to prevent access to information by converting it into a scrambled (unreadable) form of text. end-user license agreement (EULA) A legal contract between the author of software and the end user that defines how the software can be used. event-driven Reacting to particular user actions or the browser's completion of a specific task. extranet A network that connects enterprise intranets to the global Internet. Designed to provide access to selected external users. Facebook The premier social networking site on the Web ( com). It enables individuals to communicate individually and connect as groups using various communications tools. field A category of information in a database table. File Transfer Protocol (FTP) An Internet protocol used to transfer files between computers; allows file transfer without corruption or alteration.

41 Internet Business Associate Glossary-3 firewall A security barrier that controls the flow of information between the Internet and a private network. A firewall prevents outsiders from accessing an enterprise's internal network, which accesses the Internet indirectly through a proxy server. folksonomy The practice of categorizing online content through tags. foreign key A field in a related database table that refers to the primary key in the primary table. fully qualified domain name (FQDN) The complete domain name of an Internet computer, such as com. Gantt chart A horizontal bar chart that graphically displays project tasks and durations. gateway A node on a network that serves as a portal to other networks. geolocation An HTML5 application programming interface that allows developers to retrieve the geographical location information for a client-side device. GNU Privacy Guard (GPG) An open-source version of PGP, used for encrypting and decrypting e mail messages, that does not use patented algorithms. Google The de facto standard for search engine sites ( Graphics Interchange Format (GIF) A graphical image file format commonly used in HTML documents. greenfield An approach in which a project lacks any constraints imposed by prior development. hash A number generated by an algorithm from a text string. Also known as a message digest. hash encryption An encryption method in which hashes are used to verify the integrity of transmitted messages. Also known as one-way encryption header A block of information attached to a piece of data. The first part of a network packet. Can contain network addressing information or additional information that helps computers and applications process data. help desk technician An individual who diagnoses and resolves users' technical hardware and software problems. hexadecimal A base-16 number system that allows large numbers to be displayed by fewer characters than if the number were displayed in the regular base- 10 system. In hexadecimal, the number 10 is represented as the letter A, 15 is represented as F, and 16 is represented as 10. home page The first Web page that displays when you access a domain. host A computer that other computers can use to gain information. In network architecture, a host is a client or workstation. hypertext link Highlighted or underlined text in a Web page that, when clicked, links the user to another location or Web page. Hypertext Transfer Protocol (HTTP) The protocol for transporting HTML documents across the Internet. illicit server An application that installs hidden services on systems. Illicit servers consist of "client" code and "server" code that enable the attacker to monitor and control the operation of the computer infected with the server code. index A catalog of the contents of a database. Each entry identifies a unique database record. Information Technology (IT) The management and processing of information using computers and computer networks. instant messaging (IM) A computer-based method of communication in which users can type and view messages sent to one or more recipients, and view the responses immediately. Integrated Services Digital Network (ISDN) A communication standard for sending voice, video or data over digital telephone lines. interactive The characteristic of some hardware and software, such as computers, games and multimedia systems, that allows them to respond differently based on a user's actions. Internet A worldwide network of interconnected networks. Internet Assigned Numbers Authority (IANA) The international organization responsible for allocation of IP addresses. Part of the Internet Corporation for Assigned Names and Numbers (ICANN). Internet Control Messaging Protocol (ICMP) A subset of Internet Protocol that is most often used to determine whether a computer can communicate with the rest of the network. Internet Message Access Protocol (IMAP) A protocol that resides on an incoming mail server. Similar to POP, but is more powerful. Allows sharing of mailboxes and multiple mail server access. The current version is IMAP4. Internet Protocol (IP) The data transmission standard for the Internet. Every computer connected to the Internet has its own IP address, which enables a packet of data to be delivered to a specific computer.

42 Glossary-4 Internet Business Associate Internet Service Provider (ISP) An organization that maintains a gateway to the Internet and rents access to customers on a per-use or subscription basis. intranet An internal network based on TCP/IP protocols, accessible only to users within a company. IP address A unique numerical address assigned to a computer or device on a network. Java An object-oriented programming language developed by Sun Microsystems that is fully crossplatform functional. Joint Photographic Experts Group (JPEG) A graphical image file format commonly used for photographs. junction table A database table containing foreignkey fields that refer to the primary-key fields from the primary tables in a many-to-many relationship. key A variable value, such as a numeric code, that uses an algorithm to encrypt and decrypt data. Some applications encrypt and decrypt with the same key, whereas other applications use a pair of keys. keyword A word that appears on a Web page and is used by search engines to identify relevant URLs. Some words, such as "the" or "and," are too common to be used as keywords. list server A server that collects and distributes information from an authorized group of participants, called a listserve group. listserve group Users who subscribe to an e mailing list through a list server. LiveScript The Netscape-developed scripting language that was the predecessor to JavaScript. local area network (LAN) A group of computers connected within a confined geographic area. lossless compression A type of data file compression in which all original data can be recovered when the file is decompressed. lossy compression A type of data file compression in which some file information is permanently eliminated. Mail Delivery Agent (MDA) An e mail server program that receives sent messages and delivers them to their proper destination mailbox. Mail User Agent (MUA) A messaging component used as a stand-alone application by the user. malware Abbreviation for malicious software. Malware is software designed to harm computer systems. many-to-many relationship In databases, a relationship in which one record in Table A can relate to many matching records in Table B, and vice versa. mashup A Web page that integrates content and scripts from multiple Web sites to create new applications. Message Transfer Agent (MTA) A messaging component that routes, delivers and receives e mail. meta search engine A search engine that scans Web pages for <meta> tag information. microformat A data format that adds humanreadable metadata to existing code so that the data can be processed by other software. milestone The end of a stage that marks the completion of a task or series of related tasks, resulting in a key deliverable. mobile application developer An individual who develops Web sites and/or applications for mobile devices. mobile computing A person's ability to use technology in non-stationary positions and in transit. mobile device repair technician An individual who troubleshoots and repairs mobile device hardware components. modem Abbreviation for modulator/ demodulator. An analog device that enables computers to communicate over telephone lines by translating digital data into audio/ analog signals (on the sending computer) and then back into digital form (on the receiving computer). Moving Picture Experts Group (MPEG) Highquality audio and video file compression format. MPEG-1 Audio Layer 3 (MP3) Popular compression standard for audio files; retains most of the sound quality of the source. Multipurpose Internet Mail Extensions (MIME) A protocol that enables operating systems to map file name extensions to corresponding applications. Also used by applications to automatically process files downloaded from the Internet. Musical Instrument Digital Interface (MIDI) A standard computer interface for creating and playing electronic music. It allows computers to re-create music in digital format for playback. National Science Foundation (NSF) An independent agency of the U.S. government that promotes the advancement of science and engineering. needs analysis Determining a customer's needs by acquiring information, processing and evaluating the

43 Internet Business Associate Glossary-5 information, then creating a plan of action to address the needs. network A group of two or more computers connected so they can communicate with one another. network engineer An individual who manages and maintains a network infrastructure. network interface card (NIC) A circuit board within a computer's central processing unit that serves as the interface enabling the computer to connect to a network. Network News Transfer Protocol (NNTP) The Internet protocol used by news servers that enables the exchange of newsgroup (Usenet) articles. newsgroup On Usenet, a subject or other topical interest group whose members exchange ideas and opinions. Participants post and receive messages via a news server. node Any entity on a network that can be managed, such as a system, repeater, router, gateway, switch or firewall. A computer or other addressable device attached to a network; a host. non-repudiation The security principle of providing proof that a transaction occurred between identified parties. Repudiation occurs when one party in a transaction denies that the transaction took place. object An element on a Web page that contains data and procedures for how that item will react when activated. On a Web page, an object is typically a multimedia presentation. object-oriented programming (OOP) Programming concept based on objects and data and how they relate to one another, instead of logic and actions; C++ and Java are OOP languages. Ogg Vorbis (.ogg) A free, open-source alternative to the MP3 compression format for audio files; creates smaller, faster downloading files. one-to-many relationship In databases, a relationship in which a record in Table A can have multiple matching records in Table B, but a record in Table B has only one matching record in Table A. one-to-one relationship In databases, a relationship in which each record in Table A can have only one matching record in Table B, and vice versa. ontology The study of how a particular knowledge domain, or system, is organized. An ontology is the product of an ontological study. open source A peer-based development process describing organizations and products that provide free source code to the development community at large with the goal of developing better products; includes Apache Web server and Linux. open-source license A "copyleft" license that removes restrictions on the use and distribution of the licensed product. P2P A peer-to-peer network on the Internet. packet Data processed by protocols so it can be sent across a network. patch Programming code that provides a temporary solution to a known problem, or bug. patent A set of exclusive rights granted to an inventor for a fixed period of time upon disclosure of the invention. PC repair technician An individual who installs, modifies and repairs personal computer (PC) hardware components. peer-to-peer network A network in which each computer has both server and client capabilities. Personal Digital Assistant (PDA) A small, handheld computer used for personal information management. The predecessor to the smartphone. personal information management (PIM) program A tool used to schedule appointments and meetings, store contact information, and manage tasks. plug-in A program installed in the browser to extend its basic functionality. Allows different file formats to be viewed as part of a standard HTML document. podcast The use of audio or video digital-media files that are distributed through Web feeds to subscribed users. Point-to-Point Protocol (PPP) A protocol that allows a computer to connect to the Internet over a phone line. Point-to-Point Protocol over Ethernet (PPPoE) A protocol that implements PPP on top of the Ethernet architecture to connect an entire network to the Internet. pop-under window A small browser window that appears behind the browser window you are viewing. pop-up window A small browser window that appears in front of the browser window you are viewing. Portable Document Format (PDF) A file format that can be transferred across platforms and retain its formatting; designated by the file name extension.pdf. Portable Network Graphics (PNG) An open source graphical image file format created to replace GIFs.

44 Glossary-6 Internet Business Associate Post Office Protocol (POP) A protocol that resides on an incoming mail server. The current version is POP3. presence A status indicator that conveys a person's willingness and ability to engage in communications. Pretty Good Privacy (PGP) A method of encrypting and decrypting e mail messages. It can also be used to encrypt a digital signature. primary key A field containing a value that uniquely identifies each record in a database table. program management The process of managing multiple interdependent projects to improve the performance of an organization. project A sequence of tasks that must be accomplished within a certain time frame to achieve a desired result. project management The practice of applying skills and processes to activities in order to meet deadlines and achieve desired results. project schedule A document that lists the planned dates for performing tasks and meeting goals defined in a project plan. proprietary software Software that is the legal property of an entity. query A question posed by a user to a database to request database information. The database returns the query results based on the criteria supplied by the user in the query. QuickTime A plug-in developed by Apple Computer for storing movie and audio files in digital format. QuickTime Movie (MOV) Standard file format for Apple QuickTime; uses the.mov,.moov or.qt file name extension. record A collection of information in a database table consisting of one or more related fields about a specific entity, such as a person, product or event. relational database A database that contains multiple tables related through common fields. relationship A connection between two or more database tables that is based on a field that the tables have in common. relative URL A URL that gives an abbreviated path to a resource using the current page as a starting position. replication The practice of copying data from one source, such as a database, to another. Request for Comments (RFC) A document published by the IETF that details information about standardized Internet protocols and those in various development stages. resource A person, department or device needed to accomplish a task. Return On Investment (ROI) Profit earned as a result of a project relative to the value of resources required to complete it. Rich Text Format (RTF) Portable text file format created by Microsoft that allows image insertion and text formatting; an almost universal format. root-level server A server at the highest level of the Domain Name System. router A device that routes packets between networks based on network-layer addresses; determines the best path across a network. Also used to connect separate LANs to form a WAN. scalable The ability for a system to function well when its workload is increased or hardware is added to meet user need. scope The goals and tasks of a project, and the work required to complete them. scope creep Gradual increases in project scope that can undermine the success of a project. screen saver A graphic or moving image that appears on your screen when your computer is idle. search engine A powerful software program that searches Internet databases for user-specified information. search engine optimization (SEO) The process of improving the volume and quality of traffic to a Web site by structuring content to improve search engine ranking. A specific activity of Internet marketing. Secure Copy (SCP) A program used with Secure Shell (SSH) to transfer files between systems. Secure MIME (S/MIME) Secure version of MIME that adds encryption to MIME data. Secure Sockets Layer (SSL) A protocol that provides authentication and encryption, used by most servers for secure exchanges over the Internet. Superseded by Transport Layer Security (TLS). security analyst/consultant An individual who examines an organization's security requirements and determines the necessary infrastructure. security manager An individual who manages the security measures used to protect electronic data.

45 Internet Business Associate Glossary-7 semantic Web A Web 2.0 implementation by which Web data is contextualized with the addition of machine-readable metadata. SEO analyst An individual who determines the visibility of Web sites across multiple clients and search engines. server A computer in a network that manages the network resources and provides, or serves, information to clients. server administrator An individual who manages and maintains network servers. shared domain A hosting service that allows multiple entities to share portions of the same domain name. Simple Mail Transfer Protocol (SMTP) The Internet standard protocol for transferring e mail messages from one computer to another. smartphone A mobile phone with advanced computing ability and Internet connectivity. Smartphones combine a mobile phone, camera, video recorder, global positioning system, touchscreen, Web browser and wireless high-speed Internet connectivity into one device. snail mail Slang term for the standard postal service. social networking The practice of creating networks of friends, associates and clients who can discuss topics in common. Online social networking is a powerful concept used by individuals and businesses worldwide. spam Unsolicited and unwanted messages; the equivalent of junk mail. spam filter An e mail client program that identifies and filters out spam messages before they reach the e mail Inbox. spim Spam that is delivered through instant messaging. spyware A software application secretly placed on a user's system to gather information and relay it to outside parties, usually for advertising purposes. SSH File Transfer Protocol (S/FTP) A file transfer protocol that allows the encryption of transmissions using the Secure Shell (SSH) protocol. SSL/TLS-enabled FTP (FTPS) FTP that runs on an SSL/TLS-secured connection. stakeholder A person or group with an interest in a project, and with the power to exert influence (either positive or negative) over the project and affect results. standard A definition or format that has been approved by a recognized standards organization. Statement Of Work (SOW) A contract to initiate a project; the contract contains project goals and specifies how those goals will be met. streaming media A continuous flow of data, usually audio or video files, that assists with the uninterrupted delivery of those files into a browser. Structured Query Language (SQL) A language used to create and maintain professional, highperformance corporate databases. symmetric encryption An encryption method in which the same key is used to encrypt and decrypt a message. Also known as private-key encryption. table A collection of data about a limited topic, organized into rows and columns in a database. tablet A powerful mobile computer similar to a smartphone, but with a larger touchscreen. Tablet computers typically do not have phone service, but are capable of high-speed Internet connections. Tagged Image File Format (TIFF) Commonly used graphic file format, developed by Aldus Corporation; uses the.tif or.tiff file name extension. task A unit of work that must be accomplished during the course of a project. text messaging A method of person-to-person communication in which users type short text messages from mobile phones. "The Right to Be Forgotten" An argument that asks "Do people have the right to remove damaging information about themselves on the Internet so the information can be forgotten?" top-level domain The group into which a domain is categorized, by common topic (company, educational institution) and/or geography (country, state). trackback A method by which a blogger receives notification when other bloggers link to his or her blog entry. Transmission Control Protocol/Internet Protocol (TCP/IP) A suite of protocols that turns data into blocks of information called packets, which are then sent across the Internet. The standard protocol used by the Internet. Transport Layer Security (TLS) A protocol based on SSL 3.0 that provides authentication and encryption, used by most servers for secure exchanges over the Internet. trojan A program disguised as a harmless application that actually produces harmful results.

46 Glossary-8 Internet Business Associate Twitter A social networking and blogging site that allows individuals to communicate via short messages ( typosquatting The unethical practice of registering domain names very similar to those of high-volume sites in hopes of receiving traffic from users seeking the high-volume site who mistakenly enter an incorrect URL in their browsers. unified communications (UC) A business trend that seeks to simplify and integrate all forms of communication. Also, a set of technologies that enable voice to be converted into text, and vice versa. Uniform Resource Identifier (URI) A standardized method of referring to a resource using a text string. Uniform Resource Locator (URL) A text string that specifies an Internet address and the method by which the address can be accessed. update A file or collection of tools that resolves system liabilities and improves software performance. Usenet (User Network) A collection of thousands of Internet computers, newsgroups and newsgroup members using Network News Transfer Protocol (NNTP) to exchange information. user name A unique name or number that identifies you when logging on to a computer system or online service. In an e mail address, the part before symbol. vector graphics Resizable images that are saved as a sequence of vector statements, which describes a series of points to be connected. viewer A scaled-down version of an application; designed to view and print files. virtual domain A hosting service that allows a company to host its domain name on a third-party ISP server. Virtual Network Computing (VNC) A program that allows you to control a computer at a remote location. virus A malicious program that replicates itself on computer systems, usually through executable software, and causes irreparable system damage. Visual Basic The Microsoft graphical user interface (GUI) programming language used for developing Windows applications. A modified version of the BASIC programming language. Visual Basic Script (VBScript) Scripting language from Microsoft derived from Visual Basic; used to manipulate ActiveX scripts. Voice over IP (VoIP) A technology that converts voice into data packets for transmission over a packetswitched IP network. Allows the use of the Internet for real-time voice and video traffic. Waveform (WAV) Windows standard format for audio files. Web 2.0 A concept referring to the changing trends in the use of WWW technology and Web design that have led to the development of information-sharing and collaboration capabilities. Web application developer An individual who develops primarily server-side Web applications. Web architect An individual who creates the overview plan of a Web site's development. Web browser A software application that enables users to access and view Web pages on the Internet. Web feed A data format for delivering Web content that is updated frequently. Web marketing manager An individual who develops and implements plans to exploit the Internet for marketing and sales opportunities. Web page An HTML document containing one or more elements (text, images, hyperlinks) that can be linked to or from other HTML pages. Web site A World Wide Web server and its content; includes multiple Web pages. Web site analyst An individual who analyzes Web site statistics to determine the site's effectiveness. Web site designer An individual who is responsible for the organization and appearance of a Web site. Web site manager An individual who manages a Web development team. Web-based e mail Free e mail service from a provider such as Windows Live Hotmail or Yahoo! in which you request a user name. You can access your e mail from any computer that has access to the Internet. Webcast An audio and/or video Web event that is distributed over the Internet. Webinar An interactive Web-based seminar or training session. wide area network (WAN) A group of computers connected over an expansive geographic area so their users can share files and services. wiki A page or collection of Web pages that can be viewed and modified by anybody with a Web browser and access to the Internet.

47 Internet Business Associate Glossary-9 wireless access point (AP) A device that enables wireless systems to communicate with each other, provided that they are on the same network. wizard A tool that assists users of an application in creating documents and/or databases based on styles and templates. Also a tool that guides users step-bystep through a software installation process. World Wide Web (WWW) A set of software programs that enables users to access resources on the Internet via hypertext documents. worm A self-replicating program or algorithm that consumes system resources. xdsl Collectively, the variations of Digital Subscriber Line (DSL), which include ADSL, RADSL and HDSL. XMLHttpRequest An application programming interface (API) that is used to transfer XML and other text data between a Web server and browser.

48 Glossary-10 Internet Business Associate

49 Internet Business Associate Glossary-1 Index "The Right to Be Forgotten", D, 5-3 4G (fourth generation), G mobile hotspot, standard, 3-13 abbreviations, text message, 2-23 absolute URL, 4-7 ActiveX, 5-6, 8-12 add-ons, Firefox, 5-19 address book, , 7-21 address, Web, 4-6 addresses, , 7-6 Adleman, Leonard, 8-19 Adobe Acrobat, 5-22 Adobe Flash, 5-12 Adobe PageMaker, 5-29 Adobe Photoshop, 5-29 Adobe Reader, 5-22 Adobe Systems Incorporated, 5-22 ADSL, 3-14 Advanced Research Projects Agency (ARPA), 3-7 Advanced Research Projects Agency Network (ARPANET), 3-7 adware, 8-28 aggregator, 2-8 aggregator, feed software, 2-8 AIFF, 5-24 Ajax, 2-5 alternative browsers, 4-11 animation, 5-4 anonymous browsing, 4-15 anti-virus program updates, 8-32 anti-virus software, 8-26 AP, 3-13 Apple QuickTime, 5-8, 5-15 Apple Safari, 4-11 applets, Java, 5-4 ARPA, 3-7 ARPANET, 3-7 articles, newsgroup, 3-21 assignment, 10-8 assumption, Asymmetric Digital Subscriber Line (ADSL), 3-14 asymmetric encryption, 8-18 Atom, 2-7 attachment, 7-17 AU, 5-24 audio, 5-4 audio files, 5-24 Audio Interchange File Format (AIFF), 5-24 authentication, 8-14 authentication types, 8-14 authoritative peer-reviewed resource, 6-28 authorship, 8-40 backbone, 3-7 bandwidth, 3-12 Beal, George, 1-29 Bebo, 2-10 benefits management, bias, 6-30 binary file, 9-8 Bing, 6-16, 6-23 BitTorrent, 9-27 blackhole list, 7-35 blacklist, 7-35 blog, 2-30, 2-34, 2-35 blog manager, 1-16 blog sites, 2-30 blogosphere, 2-30 Bohlen, Joe, 1-29 Bookmarks, 4-18 Boolean operator, 6-18 browser, 3-8 browser cache, 4-29 browser elements, 4-23 browser , 7-7 browser fonts, 4-24 browser functions, 4-3 browser home page, 4-25 browser preferences, 4-24 browser security, 8-11 browser tabs, 4-19 browser windows, multiple, 4-19 browser, installation of, 4-4 browser, selecting for your business, 4-17 business concerns, and IT, business intelligence analyst, 1-12 business model, Web 2.0, 2-4 business modeling, 1-30 business ontology and IT, 1-32 business tool, social networking, 2-12 C, 5-3 C#, 5-5 C++, 5-3 cable modem, 3-14 cache, browser, 4-29 cache, disk, 5-9 call center, 2-39 CAPTCHA, 7-35 career model, IT, 1-18 careers, in IT, 1-19 careers, IT, and education, 1-26 Cascading Style Sheets (CSS), 5-8 case-sensitive, 6-13, 6-19 certification, project management, 10-8 CGI, 6-8 Chernobyl virus, 8-24 Chicago Manual of Style, The, 6-37 Chrome, Google, 4-11, 4-14 Chrome, Google, 4-11 ciphertext, 8-18 citing online resources, 6-36 Classmates.com, 2-10 client, 3-5 client problems, troubleshooting, 4-35 client/server model, 3-5 closing phase, cloud computing, 1-13, 1-14, 3-26, 3-30 cloud computing, advantages and disadvantages, 3-29 codec, 5-11

50 Index-2 Internet Business Associate collaboration among devices (presencing), 2-40 collaborative filtering, 3-28 collective intelligence, 2-3 common field, 6-4 Common Gateway Interface (CGI), 6-8 communication skills, 10-9 communication skills, with technical concepts, 1-27 communication, effective, 2-35 communities, Web-based, 2-4 Completely Automated Public Turing Test to Tell Computers and Humans Apart (CAPTCHA), 7-35 compression, 5-10 compression utilities, 9-19 compression, lossless, 5-10 compression, lossy, 5-10 CompTIA Project+ certification, 10-9 constraint, contact center, 2-39 controlling phase, convergence, 2-38 convergence technologies, 1-14 convergent network, 1-14 cookie, 8-6 cookies, controlling, 8-7 cookies, privacy issues, 8-6 cookies, viewing, 8-9 copyleft, 9-30 copyleft licenses, 9-30 copyright, 6-37 copyright infringement, 2-37, 5-30, 6-37, 8-40 copyright issues, 8-40 copyright law, 8-41 CPU scavenging, 3-29 CRM, 3-27 crowdsourcing, 2-3, 3-28 CSS, 5-8 customer relationship management (CRM), 3-27 Cyworld, 2-10 data modeling, 1-32 database, 6-3 database administrator, 1-12 database analyst, 1-12 database designer, 1-12 database engineer, 1-12 database management system (DBMS), 6-7 database security engineers, 1-12 DBMS, 6-7 dead link, 1-11 decompression, 5-10 decryption, 8-17 deep URL, 4-7 Define-Measure-Analyze-Design-Verify (DMADV) methodology, Define-Measure-Analyze-Improve-Control (DMAIC) methodology, Delicious, 2-7, 2-10 derivative work, 9-29 desktop firewall, 8-37 deviantart, 2-11 dial-up Internet connection, 3-11 Digg, 2-10 digital certificate, 8-15 digital signature, 8-15, 8-16 Digital Subscriber Line (DSL), 3-14 direct Internet connection, 3-12 direct Internet connection speeds, 3-15 directional resource, 6-29 directory search, 6-11 disk cache, 5-9 DMADV, DMAIC, DNS, 3-21 document files, 5-29 domain, 7-6 domain name, 3-21, 7-6 domain name server, 3-26 domain name structure, 3-21 domain name syntax, 3-22 Domain Name System (DNS), 3-21 domain, top-level, 3-23 downloadable software and content, 2-36 DSL, 3-14 dual licensing, 9-30 Duqu worm, 8-24 dynamic, 5-4 E1 line, 3-13 E3 line, 3-13 education and IT careers, address book, addresses, 7-6 attachment, client, 7-7 content, illicit, marketing, 9-4 protocols, 7-5 responses, servers, signature, , workplace use of, /groupware administrator, 1-14 emoticons, 7-29 Encapsulated PostScript (EPS), 5-29 encryption, 8-17 encryption levels, 8-32 encryption policies, 8-20 encryption, asymmetric, 8-18 encryption, hash, 8-19 encryption, one-way, 8-19 encryption, private-key, 8-18 encryption, public-key, 8-18 encryption, symmetric, 8-18 Encyclopedia Britannica, 6-28 end-user license agreement (EULA), 9-31 EPS, 5-29 EPSI, 5-29 error pages, 6-24 Ethernet, 3-13 ethical issues, security-related, 8-40 ethics, Internet, 2-36 etiquette, text messaging, 2-24 evaluating resources, 6-29 event-driven, 5-4 Excite, 6-17 executing phase, expenses, IT-related, 1-27 extranet, Facebook, 1-5, 2-11 false positives, in spyware detection, 8-29 Favorites, 4-18 field, 6-3 File Transfer Protocol (FTP), 3-19, 9-7 files, audio, 5-24 files, document, 5-29 files, graphics, 5-28 files, video, 5-24 Firefox, 4-11 Firefox add-ons, 5-19 Firefox security, 8-12

51 Internet Business Associate Glossary-3 firewall, 8-36 firewall, desktop, 8-37 firewall, personal, 8-37 Flamer malware, 8-24 Flickr, 2-7, 2-11 folksonomy, 2-7 fonts, browser, 4-24 foreign key, 6-5 fork, 9-29 fourth generation (4G), 3-15 FQDN, 3-23 free distribution, 9-29 freeware, 2-36 Frena, George, 8-41 FTP, 3-19, 9-7 FTP over SSL (S/FTP), 8-21 FTPS, 9-16 fully qualified domain name (FQDN), 3-23 Gantt chart, Gantt, Henry, GanttProject, gateway, 3-7 gateway, SMS, 2-22 geolocation, 5-8 GIF, 5-4, 5-29 GNU General Public License (GPL), 9-30 GNU Privacy Guard (GPG), 7-9 GnuPG, 7-9 Gnutella, 9-26 Goldmine, 6-8 Google, 1-5, 6-14, 6-20, 6-21 Google Bookmarks, 4-19 Google Chrome, 4-11, 4-14 Google Docs, 3-30 Google Drive, 3-30 Google Maps, 3-30 Google Zeitgeist, 10-6 Google+, 2-10 GPG, 7-9 GPL, 9-30 graphics files, 5-28 Graphics Interchange Format (GIF), 5-29 graphics-editing application, 5-29 Green Paper, 8-41 greenfield, 4-14 grid computing, 3-28 Habitat for Humanity, 1-7 harassment, avoiding online, 2-37 hash, 8-19 hash encryption, 8-19 HDSL, 3-14 header, 7-8 help desk technician, 1-17 hexadecimal, 3-18 High-bit-rate Digital Subscriber Line (HDSL), 3-14 History folder, 4-26 holistic perspective, in IT jobs, 1-4 home page, browser, 4-25 home page, Web site, 4-7 host, Web site, 3-22 hosted computing, 3-27 hotspot, mobile, 3-15 HTML, 3-7 HTML format, 1-23 HTML5, 5-7 HTTP, 3-19 HTTP over SSL (HTTPS), 8-21 HTTPS, 8-21 hyperlink, 3-7 hypertext link, 3-7 Hypertext Markup Language (HTML), 3-7 Hypertext Markup Language version 5 (HTML5), 5-7 Hypertext Transfer Protocol (HTTP), 3-19 IANA, 3-18 ICANN, 3-22 ICMP, 8-37 IEEE, 1-34, 3-13 IETF, 1-34, 8-21 igoogle, 3-30 IITF, 8-40 illicit server, 8-25 IM, 2-16, 3-27 IM clients, 2-17 IM security, 2-17 IMAP, 3-20, 7-5 index, 6-11 index resource, 6-29 Information Infrastructure Task Force (IITF), 8-40 information portal, 6-10 Information Technology (IT), 1-4 informational resource, 6-29 initiating phase, inline video, 5-4 instant messaging (IM), 2-16, 3-27 Institute of Electrical and Electronics Engineers (IEEE), 1-34, 3-13 Integrated Services Digital Network (ISDN), 3-12 interactive, 5-4 International Organization for Standardization (ISO), 1-33, Internet, 2-39, 3-6 Internet Assigned Numbers Authority (IANA), 3-18 Internet communication, ethical, 2-36 Internet connection speeds, direct, 3-15 Internet connection, dial-up, 3-11 Internet connection, direct, 3-12 Internet Control Messaging Protocol (ICMP), 8-37 Internet Corporation for Assigned Names and Numbers (ICANN), 3-22 Internet Engineering Task Force (IETF), 1-34, 8-21 Internet ethics, 2-36 Internet Explorer, 4-11 Internet History folder, 4-26 Internet Message Access Protocol (IMAP), 3-20, 7-5 Internet Protocol (IP), 3-17, 8-37 Internet Protocol version 4 (IPv4), 3-17 Internet Protocol version 6 (IPv6), 3-18 Internet Service Provider (ISP), 3-11 intranet, IP, 3-17, 8-37 IP address, 7-5 ipconfig command, 9-27 IPv4, 3-17 IPv6, 3-18 ISDN, 3-12 ISO, 1-33, ISO 9000, 1-33, ISP, 3-11 issues log, IT, 1-4 IT career model, 1-18 IT job roles, 1-4 IT projects, 10-4 IT projects, effects on productivity, IT rights and responsibilities, IT-related expenses, justifying, 1-27 Java, 5-3 Java applets, 5-4

52 Index-4 Internet Business Associate Java vs. JavaScript, 5-5 JavaScript, 5-4, 8-12 job roles, IT, 1-4 job search, 1-19 job tasks, with Web search, 6-22 Jobs, Steve, 5-8 Joint Photographic Experts Group (JPEG), 5-29 JPEG, 5-4, 5-29 JScript, 5-5 junction table, 6-6 key, 8-18 key, private, 8-18 key, public, 8-18 keyword, 6-9 keyword search, 6-11 Konqueror, 4-12 Kuhn, Thomas, 1-28 LAN, 3-6 leadership skills, legal issues, security-related, 8-40 licensing issues, 8-42 life cycle, program management, link, 3-7 LinkedIn, 2-11 list server, 9-5 LISTSERV, 9-4, 9-5 listserve group, 9-5 LiveScript, 5-5 LiveVideo, 5-24 local area network (LAN), 3-6 lossless compression, 5-10 lossy compression, 5-10 Lynx, 4-12 Mail Delivery Agent (MDA), 7-5 mail transport agent, 7-5 Mail User Agent (MUA), 7-7 malware, 8-23 many-to-many relationship, 6-6 MAPHIA, 8-41 marketing manager, Web, 1-16 mashup, 2-9 mass-marketing technologies, 9-4 MDA, 7-5 Media Player, 5-17 Meebo, 2-5 meetings, and scope creep, meetings, planning, Megaupload.com, 8-42 Melissa virus, 8-24 message digest, 8-19 Message Transfer Agent (MTA), 7-5 meta search engines, 6-10 meta tag, 6-9 microformat, 2-35 Microsoft Excel, 5-5 Microsoft PowerPoint Viewer, 5-22 Microsoft Silverlight, 5-14 Microsoft Terminal Services, 9-24 Microsoft Windows Media Player, 5-17 Microsoft Word, 5-5 MIDI, 5-10, 5-24 milestone, MIME, 7-8 MIME types, defining, 9-17 minus sign (-), 6-18 MLA Handbook for Writers of Research Papers, 6-37 mobile application developer, 1-10 mobile computing, 2-41 mobile device repair technician, 1-17 modeling, business, 1-30 modeling, data, 1-32 modem, 3-11 Moore, Geoffrey, 1-29 Moore, Gordon, 1-28 Moore's Law, 1-28 Mozilla Firefox, 4-11 Mozilla Thunderbird, 7-7 Mozilla Thunderbird, configuration of, 7-11 MP3, 5-24, 9-26 MPEG-1 Audio Layer-3 (MP3), 5-24 MPOP, 2-40 MTA, 7-5 MUA, 7-7 Multilink Point-to-Point Protocol (MLPPP), 3-18 Multiple Points of Presence (MPOP), 2-40 Multipurpose Internet Mail Extensions (MIME), 7-8 Musical Instrument Digital Interface (MIDI), 5-10 MySpace, 2-11 Napster, 8-41, 9-26 National Science Foundation (NSF), 3-7 needs analysis, netiquette, 2-35 Netscape Communications, 5-5 network, 3-4 network convergence, 2-38 network engineer, 1-14 network interface card (NIC), 3-13 Network News Transfer Protocol (NNTP), 3-21 network server, 3-4 network, personal, 1-20 newsgroup articles, 3-21 newsgroups, 3-21 NIC, 3-13 NNTP, 3-21 node, 3-5 non-discrimination (in open source), 9-30 non-repudiation, 8-16 not safe for work (NSFW), 2-37 NSF, 3-7 NSFnet, 3-7 NSFW, 2-37 nudge, IM, 2-20 object, 5-3 object-based, 5-5, 5-6 object-oriented programming (OOP), 5-3 ODBC, 6-8 offline plug-in installation, 5-11 Ogg Vorbis, 5-25 on-demand computing, 3-27 one-to-many relationship, 6-6 one-to-one relationship, 6-6 one-way encryption, 8-19 online content design, 5-5 online plug-in installation, 5-11 on-screen element, 5-4 ontology, 1-30 ontology and IT, 1-32 ontology, vs. data modeling, 1-33 OOP, 5-3 Open Database Connectivity (ODBC) standard, 6-8 Open Group, The, 5-6, 6-8 open peer-reviewed resource, 6-28 open-source development, 9-29 open-source license, 9-30 Opera, 4-12, 4-13 Opera Mail, 7-7 operators, Boolean, 6-18 Oracle Corporation, 6-7

53 Internet Business Associate Glossary-5 organizational skills, 10-9 OWL, 1-32 P2P, 9-26 P2P networks, in business, 9-26 packet, 3-8 page-layout application, 5-29 PageMaker, 5-29 Pandora, 3-28 paper trail, paradigm shift, 1-28 parked domain, 8-36 patch, 8-32 patent, 9-32 PC repair technician, 1-17 PDA, 7-40 PDF, 1-22, 5-22 PE_Nimda.A-O worm, 8-24 peer-reviewed resource, 6-28 peer-to-peer (P2P) networks, in business, 9-26 peer-to-peer network, 9-26 personal computer (PC) repair technician, 1-17 Personal Digital Assistant (PDA), 7-40 personal information management (PIM) program, 7-39 personal network, 1-20 PGP, 7-9 phases, project management, Photoshop, 5-29 Picasa, 2-11 PICT, 5-29 PIM, 7-39 ping command, 9-27 plagiarism, 2-37, 6-36 plaintext, 8-18 plain-text format, 1-22 planning phase, Playboy Enterprises vs. Frena, 8-41 plug-in, 5-7, 5-8 plug-in appearance, 5-9 plug-in installation, 5-11 plus sign (+), 6-18 PMBOK, PMI, PMP certification, 10-9 PNG, 5-28 podcast, 2-8 Point-to-Point Protocol (PPP), 3-18 Point-to-Point Protocol over Ethernet (PPPoE), 3-19 policies, organizational, polymorphic virus, 8-50 POP, 3-20 POP3, 7-5 popular resource, 6-29 pop-under window, 4-28 pop-up window, 4-28 Portable Document Format (PDF), 1-22, 5-22 Portable Network Graphics (PNG), 5-28 portal vs. keyword search, 6-24 Post Office Protocol (POP), 3-20, 7-5 PostScript, 5-29 PostScript (PS), 5-29 PowerPoint Viewer, 5-22 PPP, 3-18 PPPoE, 3-19 preferences, browser, 4-24 presence, 2-40 Pretty Good Privacy (PGP), 7-9 primary key, 6-5 primary resource, 6-29 privacy issues, with cookies, 8-6 privacy mode, 4-15 privacy protection, on social networking sites, 2-12 privacy, with presencing, 2-41 private key, 8-18 private-key encryption, 8-18 problem-solving skills, program governance, program management, program management vs. project management, 10-4 project, 10-7 project documentation, project fork, 9-29 project life cycle, project management, 10-7 Project Management Body of Knowledge (PMBOK), project management certification, 10-8 Project Management Institute (PMI), 10-9, project management phases, Project Management Professional (PMP) certification, 10-9 project management software, project review, project schedule, 10-13, project success, project team, project triangle, Project+ certification, 10-9 proprietary software, 9-31 protocols, 3-17 protocols, , 7-5 protocols, secure, 8-21 proxy server, 4-33 PS, 5-29 public domain, 9-30 public key, 8-18 public-key encryption, 8-18 quality assurance, in project management, query, 6-7 QuickTime, 5-15 QuickTime Movie (MOV), 5-15 QuickTime Virtual Reality (QTVR), 5-16 RADSL, 3-14 ranking, Web search results, 6-26 raster graphics, 5-12 Rate-Adaptive DSL (RADSL), 3-14 Really Simple Syndication (RSS), 2-7 real-time data feeds, 5-4 record, 6-3 Recording Industry Association of America (RIAA) vs. Napster, 8-41 relational database, 6-4 relationship, 6-4 relative URL, 4-7 relevancy, Web search, 6-26 Remote Assistance, 2-27 Remote Desktop Connection, 9-24 replication, 1-12 Request for Comments (RFC), 1-34, 8-21 research, organizing, 6-33 resource, 10-8 resources, evaluating, 6-27 resources, for technical data, 10-4 resources, questionable, 6-31 resources, types of, 6-28 responses, , 7-26 résumé format, 1-22 retro virus, 8-50 Return On Investment (ROI), 1-27, 10-37

54 Index-6 Internet Business Associate reverse DNS, 3-26 review, project, RFC, 1-34, 8-21 Rhapsody, 9-26 Rich Text Format (RTF), 1-22, 5-30 Right to Be Forgotten, The, 8-4 Rivest, Ronald, 8-19 robot, 6-9 RockMelt, 4-11 Rogers, Everett, 1-29 ROI, 1-27, root-level server, 3-23 router, 3-9 RSA algorithm, 8-19 RSS, 2-7 RSS feed, 2-8 RTF, 1-22, 5-30 rules, organizational, S/FTP, 8-21, 9-16 S/MIME, 7-8 SaaS, 3-28 Safari, Apple, 4-11, 4-12 safe for work (SFW), 2-37 safety levels, Internet Explorer, 8-11 sandboxing, 4-15 scalable, 1-12 scholarly resource, 6-29 scope, 10-8 scope creep, 10-8 scope creep, and meetings, SCP, 9-16 screen saver, 8-33 scripting, 5-5, 5-6 search engine, 6-9 search engine optimization (SEO), 1-15 search relevancy, 6-26 search tips, 6-26 search, directory, 6-11 search, keyword, 6-11 secondary resource, 6-29 Secure Copy (SCP), 9-16 Secure MIME (S/MIME), 7-8 secure protocols, 8-21 Secure Sockets Layer (SSL), 8-21 security analyst/consultant, 1-15 security manager, 1-15 security policies, 8-37 security, Firefox, 8-12 Sega Enterprises Ltd. vs. MAPHIA, 8-41 semantic Web, 2-8 SEO, 1-15 SEO analyst, 1-16 server, 3-5 server administrator, 1-12 server farm, 1-13 server, domain name, 3-26 server, , 3-20 server, proxy, 4-33 server, root-level, 3-23 servers, types of, 3-5 SFW, 2-37 Shamir, Adi, 8-19 shared domain, 3-26 shareware, 2-36 Short Message Service (SMS), 2-22, 9-4 signature, , 7-20 Silverlight, 5-14 Simple Mail Transfer Protocol (SMTP), 3-20, 7-5 Six Sigma methodology, smartphone, 1-6, 1-10, 7-40 Smith, Bill, SMS, 2-22, 9-4 SMTP, 3-20, 7-5 snail mail, 7-4 social networking, 1-5, 2-10 social networking sites, privacy protection, 2-12 social networking, as business tool, 2-12 Software as a Service (SaaS), 3-28 software patent, 9-32 software, researching, 6-36 source code, 9-29 SOW, spam, 7-34, 8-4 spam filter, 7-35 spider program, 6-9 spider search engines, 6-9 spim, 2-17 spyware, 8-28 spyware detection, 8-29 SQL, 6-7 SSH File Transfer Protocol (S/FTP), 9-16 SSL, 8-21 SSL/TLS-enabled FTP (FTPS), 9-16 stakeholder, 10-9 stakeholder management, standard, 3-13 standards organizations, 1-33 standards, importance of, 1-33 Stanford University, 6-13 Statement Of Work (SOW), streaming audio, 5-3 streaming media, 5-9, streaming video, 5-3 Structured Query Language (SQL), 6-7 Stuxnet worm, 8-24 SWOT analysis, symmetric encryption, 8-18 syndicated Web content, 2-8 T1 line, 3-13 T3 line, 3-13 tabbed browsing, 4-19 table, 6-3 tablet, 1-6, 1-10 Tagged Image File Format (TIFF), 5-29 tagging, 2-7 task, 10-8 TCP, 8-37 TCP/IP, 3-8, 7-4 TCP/IP tools, troubleshooting with, 9-27 technical data, resources, 10-4 technical issues, communicating, 1-27 technology adoption life cycle, 1-29 technology adoption models, 1-28 Telecommunications Industry Association (TIA), 1-35 telephony, 2-39 telephony network, 1-14 Terminal Services, 9-24 text message abbreviations, 2-23 text messaging, 2-22 texting services, for mass marketing, 9-4 TIA, 1-35 TIFF, 5-29 TLS, 8-21 top-level domain, 3-23 tracert command, 9-28 trackback, 2-34 trademark issues, 8-43 Transmission Control Protocol (TCP), 8-37

55 Internet Business Associate Glossary-7 Transmission Control Protocol/Internet Protocol (TCP/IP), 3-8 Transport Layer Security (TLS), 8-21 trends, Web, 10-6 trojan, 8-24 troubleshooting, with TCP/IP tools, 9-27 tweet, 2-24 Twitter, 1-5, 2-12, 2-24 typosquatting, 8-35 UC, 2-38 UDP, 8-37 unified communications (UC), 2-38 Uniform Resource Identifier (URI), 4-6 Uniform Resource Locator (URL), 4-6 United States vs. Megaupload.com, 8-42 update, 8-32 URI, 4-6 URL, 4-6 URL hijacking, 8-35 URL, absolute, 4-7 URL, deep, 4-7 URL, relative, 4-7 Usenet (User Network), 3-20 User Datagram Protocol (UDP), 8-37 user interaction, 5-4 user name, 7-6 user-interface controls, 5-4 VBS Love Letter virus, 8-24 VBScript, 5-6 vector graphics, 5-12 video files, 5-24 video network, 2-39 viewer, 5-22 virtual domain, 3-26 Virtual Network Computing (VNC), 9-21 virus, 8-23, 8-24 viruses, protection from, 8-26 Visual Basic, 5-6 Visual Basic Script (VBScript), 5-6 VNC, 9-21 voice conferencing, voice network, 2-39 Voice over IP (VoIP), 2-39 VoIP, 2-39 W3C, 1-34, 5-7 WAN, 3-6 WAV, 5-24 Waveform (WAV), 5-24 Web 2.0, 2-3 Web 2.0 business model, 2-4 Web address, 4-6 Web application developer, 1-9 Web architect, 1-10 Web browser, 3-8 Web browser functions, 4-3 Web browser, installation of, 4-4 Web conference, 10-26, Web feed, 2-7 Web marketing manager, 1-16 Web Ontology Language (OWL), 1-32 Web page, 3-8 Web server administrator, 1-14 Web site, 3-8 Web site analyst, 1-10 Web site designer, 1-5 Web site host, 3-22 Web site manager, 1-11 Web, World Wide, 3-7 Web-based communities, 2-4 Web-based , 7-7 Webcast, 10-26, WebCrawler, 6-17 Webinar, 10-26, wide area network (WAN), 3-6 wiki, 2-6 Wikipedia, 2-6, 6-28 Win32/Melting.worm, 8-24 Windows Internet Explorer, 4-11 Windows Live Mail, configuration of, 7-10 Windows Live Messenger, 2-18 Windows Media Player, 5-17 Windows Remote Assistance, 2-27 WIPO, 8-41 wireless access point (AP), 3-13 wizard, 4-4 Working Group On Intellectual Property Rights, 8-40 World Intellectual Property Organization (WIPO), 8-41 World Wide Web, 3-7 World Wide Web Consortium (W3C), 1-34 worm, 8-24 xdsl, 3-14 Xiph.org, 5-25 Xiph.Org Foundation, 5-25 XML, 2-7 XMLHttpRequest, 2-5 Yahoo!, 6-13 YouTube, 2-12 Zeitgeist, Google, 10-6 Zotero, 6-33

56 Index-8 Internet Business Associate

57

58 ISBN *ECL02CFIBFNPR1208*

5Lesson 5: Multimedia on the Web Objectives

5Lesson 5: Multimedia on the Web Objectives 5Lesson 5: Multimedia on the Web Objectives By the end of this lesson, you will be able to: 1.5.7: Download and store files using a Web browser. 1.5.10: Install and upgrade common plug-ins, add-ons and

More information

Lesson 5: Multimedia on the Web

Lesson 5: Multimedia on the Web Lesson 5: Multimedia on the Web Learning Targets I can: Define objects and their relationships to multimedia Explain the fundamentals of C, C++, Java, JavaScript, JScript, C#, ActiveX and VBScript Discuss

More information

Lesson 5: Multimedia on the Web

Lesson 5: Multimedia on the Web Lesson 5: Multimedia on the Web Lesson 5 Objectives Define objects and their relationships to multimedia Explain the fundamentals of C, C++, Java, JavaScript, JScript, C#, ActiveX and VBScript Discuss

More information

Inserting multimedia objects in Dreamweaver

Inserting multimedia objects in Dreamweaver Inserting multimedia objects in Dreamweaver To insert a multimedia object in a page, do one of the following: Place the insertion point in the Document window where you want to insert the object, then

More information

Meeting Visuals UCF Toolkit User Guide

Meeting Visuals UCF Toolkit User Guide Meeting Visuals UCF Toolkit User Guide We provide Meeting Visuals web conferencing services. Because Meeting Visuals is powered by WebEx, this guide makes several references to the company name, platform

More information

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats LEC. 5 College of Information Technology / Department of Information Networks.... Web Page Design/ Second Class / Second Semester HTML5: MULTIMEDIA Multimedia Multimedia comes in many different formats.

More information

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations.

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations. 3.01C Multimedia Elements and Guidelines 3.01 Explore multimedia systems, elements and presentations. Multimedia Fair Use Guidelines Guidelines for using copyrighted multimedia elements include: Text Motion

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Helper Applications & Plug-Ins

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Helper Applications & Plug-Ins Web Development & Design Foundations with HTML5 Ninth Edition Chapter 11 Web Multimedia and Interactivity Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

Advanced High Graphics

Advanced High Graphics VISUAL MEDIA FILE TYPES JPG/JPEG: (Joint photographic expert group) The JPEG is one of the most common raster file formats. It s a format often used by digital cameras as it was designed primarily for

More information

TrainingCentre Getting Started with the Universal

TrainingCentre Getting Started with the Universal TrainingCentre Getting Started with the Universal Communications Format Toolkit InterCall, a subsidiary of West Corporation, in partnership with WebEx Communications, Inc provides TrainingCentre web conferencing

More information

Camtasia Studio 5.0 PART I. The Basics

Camtasia Studio 5.0 PART I. The Basics Camtasia Studio 5.0 Techsmith s Camtasia Studio software is a video screenshot creation utility that makes it easy to create video tutorials of an on screen action. This handout is designed to get you

More information

Screencast.com. Getting the Most from Your Screencast.com Account. July TechSmith Corporation. All rights reserved.

Screencast.com. Getting the Most from Your Screencast.com Account. July TechSmith Corporation. All rights reserved. Screencast.com Getting the Most from Your Screencast.com Account July 2009 2009 TechSmith Corporation. All rights reserved. Contents Contents...2 First Things First: Get Organized...3 Get Familiar with

More information

Publishing Electronic Portfolios using Adobe Acrobat 5.0

Publishing Electronic Portfolios using Adobe Acrobat 5.0 Step-by-Step Publishing Electronic Portfolios using Adobe Acrobat 5.0 2002, Helen C. Barrett Here is the process we will use to publish a digital portfolio using Adobe Acrobat. The portfolio will include

More information

Different File Types and their Use

Different File Types and their Use Different File Types and their Use.DOC (Microsoft Word Document) Text Files A DOC file is a Word processing document created by Microsoft Word, a word processor included with all versions of Microsoft

More information

Frequently Asked Questions

Frequently Asked Questions Application and Document Sharing, page 1 Hosting, Joining, and Setting up Meetings, page 2 Joining a WebEx Meeting or Playing Back a Meeting Recording on Chrome and Firefox, page 4 Cisco WebEx for Mobile

More information

Quick start guide to Blackboard at Keele

Quick start guide to Blackboard at Keele Quick start guide to Blackboard at Keele Table of Contents What is the KLE and why do we use it?... 3 Sign-in to the KLE... 3 Tabs and Sub-Tabs... 3 Panels and Customising the Home Tab... 3 Tools in the

More information

Oracle User Productivity Kit Content Player

Oracle User Productivity Kit Content Player Oracle User Productivity Kit Content Player Oracle User Productivity Kit Content Player Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks

More information

Oracle User Productivity Kit Content Player. E March 2014

Oracle User Productivity Kit Content Player. E March 2014 Oracle User Productivity Kit Content Player E53039-01 March 2014 Oracle User Productivity Kit Content Player E53039-01 March 2014 Copyright 1998, 2014, Oracle and/or its affiliates. All rights reserved.

More information

MEDIA RELATED FILE TYPES

MEDIA RELATED FILE TYPES MEDIA RELATED FILE TYPES Data Everything on your computer is a form of data or information and is ultimately reduced to a binary language of ones and zeros. If all data stayed as ones and zeros the information

More information

Multimedia on the Web

Multimedia on the Web Multimedia on the Web Graphics in web pages Downloading software & media Digital photography JPEG & GIF Streaming media Macromedia Flash Graphics in web pages Graphics are very popular in web pages Graphics

More information

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS LESSON 1 GETTING STARTED Before We Get Started; Pre requisites; The Notepad++ Text Editor; Download Chrome, Firefox, Opera, & Safari Browsers; The

More information

UNDERSTANDING MUSIC & VIDEO FORMATS

UNDERSTANDING MUSIC & VIDEO FORMATS ComputerFixed.co.uk Page: 1 Email: info@computerfixed.co.uk UNDERSTANDING MUSIC & VIDEO FORMATS Are you confused with all the different music and video formats available? Do you know the difference between

More information

1D CIW: Web Design Specialist. Course Outline. CIW: Web Design Specialist Apr 2018

1D CIW: Web Design Specialist. Course Outline. CIW: Web Design Specialist Apr 2018 Course Outline CIW: Web Design Specialist 22 Apr 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training 5.

More information

Chapter 2 The Internet and World Wide Web

Chapter 2 The Internet and World Wide Web Chapter 2 The Internet and World Wide Web Chapter 2 Objectives Explain how to access and connect to the Internet Explain how to view pages and search for information on the Web Describe the types of Web

More information

Cisco TelePresence Content Server S4.1

Cisco TelePresence Content Server S4.1 Cisco TelePresence Content Server S4.1 Online help (printable format) D14595.03 December 2010 Contents Logging in to the web interface... 6 Supported browsers, plugins & platforms... 7 Supported browsers...

More information

How to create interactive documents

How to create interactive documents Adobe InDesign Guide How to create interactive documents You can use Adobe InDesign to create dynamic web content or interactive documents. InDesign supports export to web-ready HTML or interactive PDF.

More information

AI/RWIS CBT Ontario Version MINIMUM SYSTEM REQUIREMENTS

AI/RWIS CBT Ontario Version MINIMUM SYSTEM REQUIREMENTS AI/RWIS CBT Ontario Version MINIMUM SYSTEM REQUIREMENTS Before you begin, please verify that the computer you are installing the software on meets the following minimum system requirements: Windows 98,

More information

CIW: Web Design Specialist. Course Outline. CIW: Web Design Specialist. ( Add-On ) 16 Sep 2018

CIW: Web Design Specialist. Course Outline. CIW: Web Design Specialist.   ( Add-On ) 16 Sep 2018 Course Outline 16 Sep 2018 ( Add-On ) Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training 5. ADA Compliant

More information

Audio,Video & Lighting

Audio,Video & Lighting Audio,Video & Lighting Multiple Choice Questions and Answers :- 1. A multimedia file a) is same as any other regular file b) Must be accessed at specific rate c) stored on remote server cannot be delivered

More information

1.1 Technical Evaluation Guidelines and Checklist:

1.1 Technical Evaluation Guidelines and Checklist: 1.1 Technical Guidelines and Checklist: This checklist is derived from the LRMDS Technical Specification. Refer to Section 10.2. Instructions: 1. Digital resources may be: a) digital and accessible online

More information

Creating Content in a Course Area

Creating Content in a Course Area Creating Content in a Course Area After creating a course area, such as a Content Area, Learning Module, Lesson Plan, or folder, you create content in it by pointing to its Action Bar to reveal menus for

More information

Share Content. Share Content

Share Content. Share Content , page 1 Quick reference tasks: share content, page 2 Share a file, page 4 Share an application, page 11 About sharing a remote computer, page 14 Take a Poll, page 17 Transfer and Download Files During

More information

Lecture 19 Media Formats

Lecture 19 Media Formats Revision IMS2603 Information Management in Organisations Lecture 19 Media Formats Last week s lectures looked at MARC as a specific instance of complex metadata representation and at Content Management

More information

Microsoft Office 2007

Microsoft Office 2007 Microsoft Office 2007 Adding Slide Transitions Transition Sound Transitions Transition Speed Apply to All A slide transition is the way one slide changes to the next in Slide Show view. Animations Tab:

More information

Adobe Captivate Level 1

Adobe Captivate Level 1 Information Technology Services Kennesaw State University Adobe Captivate Level 1 Presented by Technology Outreach in collaboration with The Multimedia Development Group (MDG) Copyright 2007 Information

More information

SAM Assessment, Training and Projects for Microsoft Office

SAM Assessment, Training and Projects for Microsoft Office SAM Assessment, Training and Projects for Microsoft Office December 2015 System Requirements Contents Overview 2 Introduction 2 System Requirements 3 Workstation Requirements 3 Setting Up SAM Workstations

More information

Chapter 12 Creating Web Pages

Chapter 12 Creating Web Pages Getting Started Guide Chapter 12 Creating Web Pages Saving Documents as HTML Files Copyright This document is Copyright 2017 by the LibreOffice Documentation Team. Contributors are listed below. You may

More information

School Installation Guide ELLIS Academic 5.2.6

School Installation Guide ELLIS Academic 5.2.6 ELLIS Academic 5.2.6 This document was last updated on 2/16/11. or one or more of its direct or indirect affiliates. All rights reserved. ELLIS is a registered trademark, in the U.S. and/or other countries,

More information

Moodle Student Introduction

Moodle Student Introduction Moodle Student Introduction City College Plymouth has chosen Moodle 1 as its Managed Learning Environment (MLE) to help support your learning, whatever course you are studying. Moodle courses are created

More information

Rev. A 02/02/2016 Downers Grove Public Library Page 1 of 50

Rev. A 02/02/2016 Downers Grove Public Library Page 1 of 50 Objectives... 3 PowerPoint 2016 Screen Overview... 4 File Tab on the Ribbon... 5 Use Tell Me for Interactive Help... 6 Accessing Documents and Templates... 7 Searching for Templates... 8 Printing... 9

More information

Design your source document with accessibility in mind. Do NOT use character formatting for headings, use the program s styles.

Design your source document with accessibility in mind. Do NOT use character formatting for headings, use the program s styles. Contents 2 Create an Accessible Microsoft Word Document 2 Use Styles 3 Columns 5 Lists 6 Tables 7 Links 7 Add Alternative Text 9 Microsoft Word 2010 Accessibility Checker Adobe Acrobat X Creating Accessible

More information

Best Practice: Attaching Files

Best Practice: Attaching Files Blackboard Help Best Practice: Attaching Files File Attachments Sharing and Exchanging Files in Courses Create Course Areas for Content Create Content in a Course Area Create Assessments in a Course Area

More information

Creating a Web Presentation

Creating a Web Presentation LESSON 9 Creating a Web Presentation 9.1 After completing this lesson, you will be able to: Create an agenda slide or home page. Create a hyperlink to a slide. Create a Web presentation with the AutoContent

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.2 Content Author's Reference and Cookbook Rev. 140225 Sitecore CMS 7.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future Twelfth Edition Chapter 5: Application Software: Tools for Productivity Copyright 2012 Pearson Education, Inc. Publishing as Prentice Hall 1 Application Software: Tools for Productivity

More information

FIREFOX REVIEWER S GUIDE. Contact us:

FIREFOX REVIEWER S GUIDE. Contact us: FIREFOX REVIEWER S GUIDE Contact us: press@mozilla.com TABLE OF CONTENTS About Mozilla 1 Favorite Firefox Features 2 Get Up and Go 7 Protecting Your Privacy 9 The Cutting Edge 10 ABOUT MOZILLA Mozilla

More information

CHAPTER 03: MULTIMEDIA & OPERATING SYSTEM. :: Operating System :: ~ What is OS?~ ~ OS Functions~ ~ OS Characteristics ~ ~ Type of OS~

CHAPTER 03: MULTIMEDIA & OPERATING SYSTEM. :: Operating System :: ~ What is OS?~ ~ OS Functions~ ~ OS Characteristics ~ ~ Type of OS~ CHAPTER 03: MULTIMEDIA & OPERATING SYSTEM :: Operating System :: ~ What is OS?~ ~ OS Functions~ ~ OS Characteristics ~ ~ Type of OS~ 1 Operating System and Software Computer Operating System An operating

More information

CHAPTER 7 WEB SERVERS AND WEB BROWSERS

CHAPTER 7 WEB SERVERS AND WEB BROWSERS CHAPTER 7 WEB SERVERS AND WEB BROWSERS Browser INTRODUCTION A web browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web. An information

More information

HP QuickTest Professional

HP QuickTest Professional HP QuickTest Professional Software Version: 10.00 Installation Guide Manufacturing Part Number: T6513-90038 Document Release Date: January 2009 Software Release Date: January 2009 Legal Notices Warranty

More information

Movie Generation Guide

Movie Generation Guide MadCap Mimic Movie Generation Guide Version 7 Copyright 2013 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

PUBLISHING FLASH. Lesson Overview

PUBLISHING FLASH. Lesson Overview PUBLISHING FLASH Lesson Overview In this lesson, you ll learn how to do the following: Test a Flash document Understand the Bandwidth Profiler Change publish settings for a document Understand the difference

More information

Working with Images and Multimedia

Working with Images and Multimedia CHAPTER Working with Images and Multimedia You can make your web page more interesting by adding multimedia elements. You can download the files featured in this chapter from www.digitalfamily.com/tyv.

More information

M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) DURATION: 03 Hrs

M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) DURATION: 03 Hrs M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) Max Marks: 100 DURATION: 03 Hrs M1-R4-01-19 1.3 Which of the following tag pair is used to list the text? (a) and (b) and (c)

More information

Intelli-Signage Signage Designer Software

Intelli-Signage Signage Designer Software Intelli-Signage (User Manual V1.0) version: V3.0.0.0 Contents 1. Introduction... 1 2. System requirement... 1 2.1 Signage Player Software... 1 2.2... 1 3. Installation/Uninstallation of... 2 4. interface...

More information

Tennessee. Business Technology Course Code Web Design Essentials. HTML Essentials, Second Edition 2010

Tennessee. Business Technology Course Code Web Design Essentials. HTML Essentials, Second Edition 2010 Tennessee Business Technology Course Code 6501240 Web Design Essentials HTML Essentials, Second Edition 2010 Notation Key SE Student Edition LE Learning Expectation Standard 1.0 Demonstrate knowledge of

More information

Getting Started. Explorers Guide. Learning about computer basics. Data file: none Objectives:

Getting Started. Explorers Guide. Learning about computer basics. Data file: none Objectives: Explorers Guide Data file: none Objectives: In this project, you will: learn about computer ergonomics describe computer hardware and software review the Windows desktop and use the mouse work with windows

More information

System Requirements July 2017

System Requirements July 2017 System Requirements July 2017 Contents Overview to the SAM System Requirements Guide 3 Setting Up Your Computer 4 Workstation Requirements 4 Necessary Software 5 Disk Protection Software 5 Monitor Resolution

More information

CTIS 155 Information Technologies I. Chapter 5 Application Software: Tools for Productivity

CTIS 155 Information Technologies I. Chapter 5 Application Software: Tools for Productivity CTIS 155 Information Technologies I Chapter 5 Application Software: Tools for Productivity Application Software Application software refers to programs that enable the user to be productive when using

More information

Exercise 1: Importing a PowerPoint Presentation... 6 Importing Files... 6 Editing and Clip Detection... 7

Exercise 1: Importing a PowerPoint Presentation... 6 Importing Files... 6 Editing and Clip Detection... 7 Table of Contents Table of Contents... i Features at a Glance... 1 Capturing, importing, and organizing... 1 Synchronizing and editing... 1 Publishing and sharing... 1 Usage Scenarios... 1 Creating Cost-Effective

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

SciVee Conferences AUTHOR GUIDE

SciVee Conferences AUTHOR GUIDE SciVee Conferences AUTHOR GUIDE 1 TABLE OF CONTENTS 1. ABOUT THIS DOCUMENT... 3 INTENDED READERSHIP... 3 FREQUENTLY USED TERMS... 3 2. SYSTEM REQUIREMENTS, PUBLISHING AND PERMISSIONS... 3 SYSTEM REQUIREMENTS...

More information

FITECH FITNESS TECHNOLOGY

FITECH FITNESS TECHNOLOGY Browser Software & Fitech FITECH FITNESS TECHNOLOGY What is a Browser? Well, What is a browser? A browser is the software that you use to work with Fitech. It s called a browser because you use it to browse

More information

Unit 4 The Web. Computer Concepts Unit Contents. 4 Web Overview. 4 Section A: Web Basics. 4 Evolution

Unit 4 The Web. Computer Concepts Unit Contents. 4 Web Overview. 4 Section A: Web Basics. 4 Evolution Unit 4 The Web Computer Concepts 2016 ENHANCED EDITION 4 Unit Contents Section A: Web Basics Section B: Browsers Section C: HTML Section D: HTTP Section E: Search Engines 2 4 Section A: Web Basics 4 Web

More information

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.0 Content Author's Reference and Cookbook Rev. 130425 Sitecore CMS 7.0 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

1D0-610 Q&As. CIW Web Foundations Associate. Pass CIW 1D0-610 Exam with 100% Guarantee. Free Download Real Questions & Answers PDF and VCE file from:

1D0-610 Q&As. CIW Web Foundations Associate. Pass CIW 1D0-610 Exam with 100% Guarantee. Free Download Real Questions & Answers PDF and VCE file from: 1D0-610 Q&As CIW Web Foundations Associate Pass CIW 1D0-610 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: https://www.pass4lead.com/1d0-610.html 100% Passing Guarantee

More information

Salesforce CRM Content Implementation Guide

Salesforce CRM Content Implementation Guide Salesforce CRM Content Implementation Guide Salesforce, Summer 16 @salesforcedocs Last updated: June 7, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Adding Multimedia Content to Web Pages

Adding Multimedia Content to Web Pages HTML 8 Adding Multimedia Content to Web Pages Courtesy of Karen Stevens Courtesy of whitehouse.gov Courtesy of Karen Stevens Objectives You will have mastered the material in this chapter when you can:

More information

Creative Uses of PowerPoint 2016

Creative Uses of PowerPoint 2016 Creative Uses of PowerPoint 2016 Audio You can add audio, such as music, narration, or sound bites, to your PowerPoint presentation. To record and hear any audio, your computer must be equipped with a

More information

Adobe Flash is the industry-standard application

Adobe Flash is the industry-standard application Introducing Flash Adobe Flash is the industry-standard application for creating animation and playing video on Web sites. It is fairly easy to learn when you are first getting started but has many powerful

More information

1. Introduction to Multimedia

1. Introduction to Multimedia Standard:11 1. Introduction to Multimedia Communication is an integral part of our life. We use various means of communication like radio, newspaper, television, theatre, movies, internet and others. These

More information

QuickTime Pro an inexpensive (but clunky) solution

QuickTime Pro an inexpensive (but clunky) solution QuickTime Pro an inexpensive (but clunky) solution Converting Existing Media into QuickTime Movies Compatible Media (not an exhaustive list) Audio AIFF AU CD audio (Mac only) MIDI MP3 (MPEG-1 layers 1,

More information

PowerPoint 2016 INTRODUCTION

PowerPoint 2016 INTRODUCTION PowerPoint 2016 INTRODUCTION LONDON SCHOOL OF HYGIENE & TROPICAL MEDICINE 2017 CONTENTS OVERVIEW... 1 The Power Point screen... 1 PowerPoint views... 2 Normal view... 2 Reading view... 2 Slide sorter view...

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

ADOBE CAPTIVATE 8. Content Planning Guide

ADOBE CAPTIVATE 8. Content Planning Guide ADOBE CAPTIVATE 8 Content Planning Guide Summer 2014 Table of Contents Using Captivate 8 on Your OnPoint Learning Platform... 2 What are the Advantages and Disadvantages of Captivate?... 2 Use Cases for

More information

EXCELLENT ACADEMY OF ENGINEERING. Telephone: /

EXCELLENT ACADEMY OF ENGINEERING. Telephone: / Common file extensions that are good to know, organized by file format. Text Files.doc.log.msg.rtf.txt.wpd.wps Microsoft Word Document Log File Mail Message Rich Text Format Text File WordPerfect Document

More information

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at FIREFOX MENU REFERENCE This menu reference is available in a prettier format at http://support.mozilla.com/en-us/kb/menu+reference FILE New Window New Tab Open Location Open File Close (Window) Close Tab

More information

Video. Add / edit video

Video. Add / edit video Video Videos greatly support learning in an e-earning setting. It is a rather complex topic though, due to the variety of formats, codecs, containers and combination of operating systems and browsers.

More information

MyNursingLab Installation Checklist and Troubleshooting Guide

MyNursingLab Installation Checklist and Troubleshooting Guide MyNursingLab Installation Checklist and Troubleshooting Guide Audience Overview This document is intended for users, computer lab administrators, field support personnel, and others responsible for installing

More information

Instructions for Configuring Your Browser Settings and Online Security FAQ s

Instructions for Configuring Your Browser Settings and Online Security FAQ s Instructions for Configuring Your Browser Settings and Online Security FAQ s General Settings The following browser settings and plug-ins are required to properly access Digital Insight s webbased solutions.

More information

Graphics Design and Applied Arts บทท 6 การออกแบบเว บเบ องต น

Graphics Design and Applied Arts บทท 6 การออกแบบเว บเบ องต น 344-282 Graphics Design and Applied Arts บทท 6 การออกแบบเว บเบ องต น Review of Web Technology Millions of web surfers who could potentially view our site have a wide variety of computer systems, then Colors

More information

Chapter 25. Build Creations with Your Photos

Chapter 25. Build Creations with Your Photos Chapter 25 Build Creations with Your Photos 2 How to Do Everything with Photoshop Elements How to Create a slide show to show off your images Post your images in web pages Build cards, calendars, and postcards

More information

Creating Presentations with Prezi

Creating Presentations with Prezi Creating Presentations with Prezi This document provides an introduction to using Prezi to create presentations. Prezi is a webbased tool that allows users to create a presentation using a map layout.

More information

Introduction to Adobe Acrobat X. Ken Dickinson Bay Area Computer Training

Introduction to Adobe Acrobat X. Ken Dickinson Bay Area Computer Training Introduction to Adobe Acrobat X Ken Dickinson Bay Area Computer Training www.bactrain.com Table of Contents What s the best way to create a PDF?... 3 Convert Microsoft Word, PowerPoint, and Excel files

More information

Getting Started. Most likely, if you ve purchased a copy of Adobe Flash CS3 Professional, Introducing Adobe Flash CS3 Professional 3

Getting Started. Most likely, if you ve purchased a copy of Adobe Flash CS3 Professional, Introducing Adobe Flash CS3 Professional 3 1 Getting Started Introducing Adobe Flash CS3 Professional 3 Why Use Flash CS3? 3 What s New in Flash CS3? 6 Flash, Flash Player, or Flash Lite? 7 File Types Associated with Flash CS3 8 Caution: Player

More information

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks Prentice Hall Learning Microsoft PowerPoint 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Multimedia s I - Curriculum Content Frameworks Arkansas Multimedia s I - Curriculum Content Frameworks

More information

Salesforce CRM Content Implementation Guide

Salesforce CRM Content Implementation Guide Salesforce CRM Content Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: October 13, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Workstation Configuration Guide

Workstation Configuration Guide Workstation Configuration Guide August 13, 2018 Version 9.6.134.78 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 4 1.1 Considerations

More information

Recommended Browser Settings

Recommended Browser Settings Recommended Browser Settings August 2015 This document is intended for restricted use only. Infinite Campus asserts that this document contains proprietary information that would give our competitors undue

More information

Exercise 5 Animated Excel Charts in PowerPoint

Exercise 5 Animated Excel Charts in PowerPoint Exercise 5 Animated Excel Charts in PowerPoint This is a fun exercise to show you how even graphs can become even more interesting if you use multimedia. You will write some slides on your own to summarize

More information

mytsa Knowledge Technical Guide

mytsa Knowledge Technical Guide mytsa Knowledge Technical Guide mytsa Knowledge Target Audience: All Partners using mytsa Knowledge Overview: To facilitate the learning process on mytsa Knowledge, all partners are advised to install

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

PC Configuration v 6.6 (01 May 2009)

PC Configuration v 6.6 (01 May 2009) A I R M E D I N T E R N A T I O N A L I N T R A N E T D O C U M E N T A T I O N PC Configuration v 6.6 (01 May 2009) There are a variety of requirements and settings that should be made in order for the

More information

4Lesson 4: Web Browsing Objectives

4Lesson 4: Web Browsing Objectives 4Lesson 4: Web Browsing Objectives By the end of this lesson, you will be able to: 1.5.1: Describe a URL/URI, its functions and components, and the different types of URLs (relative and absolute); and

More information

PLATO Learning Environment (v2.0) System and Configuration Requirements

PLATO Learning Environment (v2.0) System and Configuration Requirements PLATO Learning Environment (v2.0) System and Configuration Requirements For Workstations July 30, 2010 Windows XP Home and Professional (SP3) Windows Vista Home/Premium/Business/Ultimate Windows 7 Home/Premium/Business/Ultimate

More information

RealPresence Media Manager

RealPresence Media Manager RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 USER GUIDE Software 6.7 January 2015 3725-75302-001A RealPresence Media Manager Polycom, Inc. 1 Copyright 2015, Polycom, Inc. All rights

More information

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list.

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list. Using Adobe Flash Software The S.T.A.B.L.E. Program Learner Course PowerPoint slides are packaged with Adobe Flash and will play using a Flash Player. This means you do not have to have PowerPoint installed

More information

Hypertext Markup Language, or HTML, is a markup

Hypertext Markup Language, or HTML, is a markup Introduction to HTML Hypertext Markup Language, or HTML, is a markup language that enables you to structure and display content such as text, images, and links in Web pages. HTML is a very fast and efficient

More information

Common Technology Words and Definitions

Common Technology Words and Definitions Common Technology Words and Definitions 77 78 Common Technology Words and Definitions: ASCII American Standard Code for Information Interchange, a code that makes it possible to send information from one

More information

USING YOUR VIDEO IPOD

USING YOUR VIDEO IPOD USING YOUR VIDEO IPOD TABLE OF CONTENTS Introduction to itunes...2 Using Your ipod an Overview...2 Music...2 Audiobooks...4 Podcasts...5 Videos...5 Photos...6 Text...8 From PowerPoint to the ipod...9 Macintosh...9

More information