Identify the letter of the choice that best matches the phrase or definition.

a. ActionScript
b. TIF
c. PNG
d. FXG
e. JPEG
f. HTML Wrapper
g. SWF
h. SWC
i. Win Projector
j. GIF

1. A common vector format
2. A common bitmap format
3. A programming language in Flash
4. File format type that contains complete animations
5. File format that contains compressed symbols and ActionScript
6. File format for Web pages written with HTML code, SWF, and JavaScript files
7. File format best suited for images with large areas of solid color; Adobe Photoshop is the industry standard software for working with this file type
8. File format best suited for images with millions of colors or many gradients
9. Stand-alone file type that, when double-clicked, plays the Flash movie in its own window
10. File format best suited for images with large areas of solid color, and transparency; Adobe Photoshop and Adobe Fireworks are the industry standard software for working with this file type


1. D FXG
2. B TIF
3. A ActionScript
4. G SWF
5. H SWC
6. F HTML Wrapper
7. J GIF
8. E JPEG
9. I Win Projector
10. C FXG

Computer Science & Information Technology

You might also like to view...

If you have defined a class, SavingsAccount, with a public static data member named numberOfAccounts, and created a SavingsAccount object referenced by the variable account20, which of the following will assign numberOfAccounts to numAccounts?

a. numAccounts = account20.numAccounts; b. numAccounts = numOfAccounts; c. numAccounts = SavingsAccount.numberOfAccounts; d. numAccounts = account20;

Computer Science & Information Technology

(Turtle Graphics) The Logo language, which is popular among elementary school children, made the concept of turtle graphics famous. Imagine a mechanical turtle that walks around the room under the control of a C++ program. The turtle holds a pen in one of two positions, up or down. While the pen is down, the turtle traces out shapes as it moves; while the pen is up, the turtle moves about freely without writing anything. In this problem, you’ll simulate the operation of the turtle and create a computerized sketchpad as well. Use a 20-by-20 array floor that is initialized to false. Read commands from an array that contains them. Keep track of the current position of the turtle at all times and whether the pen is currently up or down. Assume that the turtle always starts at position (0, 0) o


Suppose that the turtle is somewhere near the center of the floor. The following “program” would draw and print a 12-by-12 square and end with the pen in the up position:
2
5,12
3
5,12
3
5,12
3
5,12
1
6
9
As the turtle moves with the pen down, set the appropriate elements of array floor to true. When the 6 command (print) is given, wherever there is a true in the array, display an asterisk or some other character you choose. Wherever there is a zero, display a blank. Write a program to implement the turtle graphics capabilities discussed here. Write several turtle graphics programs to draw interesting shapes. Add other commands to increase the power of your turtle graphics language.

Computer Science & Information Technology

NAT extended the useful life of IPv4 addresses on the Internet for many years.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The unique number assigned to a network adapter by the manufacturer is referred to as the ________ address.

A. MAC B. IP C. SSID D. network

Computer Science & Information Technology