Match the following standard graphic file formats with their description

I. GIF
II. JPG
III. PNG
IV. BMP
V. TIF

A. Best suited for web use only
B. Developed for Microsoft Windows
C. A lossless graphic format used in publishing
D. A graphic format that can store up to 16.7 million colors
E. A 256-color graphic file format that uses lossless compression


E, D, A, B, C

Computer Science & Information Technology

You might also like to view...

You can think of ____________________ as going slowly.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

What is a navigation system?

What will be an ideal response?

Computer Science & Information Technology

In the following code, what is the output for list1?

``` public class Test { public static void main(String[] args) { int[] list1 = {1, 2, 3}; int[] list2 = {1, 2, 3}; list2 = list1; list1[0] = 0; list1[1] = 1; list2[2] = 2; for (int i = 0; i < list1.length; i++) System.out.print(list1[i] + " "); } } ``` a. 1 2 3 b. 1 1 1 c. 0 1 2 d. 0 1 3

Computer Science & Information Technology

What are the advantages of referring to a key rather than the specific table entry?

What will be an ideal response?

Computer Science & Information Technology