File formats commonly used for displaying images on the Web include JPG, GIF, and ____.

A. BMP
B. PNG
C. TIFF
D. DIB


Answer: B

Computer Science & Information Technology

You might also like to view...

What states are displayed in the list box by the following program segment?

``` Dim states() As String = {"Colorado", "New Mexico", "Arizona", "Utah"} Dim query = From state in states Where ContainsE(state) Select state For Each state in query lstBox.Items.Add(state) Next Function ContainsE(word As String) As Boolean If word.IndexOf("E") <> -1 Or word.IndexOf("e") <> -1 Then Return True Else Return False End If End Function ``` (A) Colorado (B) New Mexico (C) Colorado, New Mexico, Arizona, Utah (D) No states

Computer Science & Information Technology

Critical Thinking QuestionsCase G-1Sidney works in management for BusyBody Toymakers. She has just been named project manager for a team who will develop a new website showcasing this year's most popular toys. As Sidney directs the work of the design team, she recommends the use of CSS page layouts in Dreamweaver to control the position of text and graphic elements with precision. Sidney is introducing the team to some of the new features of HTML5, including new tags to support semantic markup. Which of the following is NOT one of the tags to which Sidney introduces the group?

A.

B.
C.
Computer Science & Information Technology

While the address of a variable is constant, the address stored in a pointer variable can be changed.

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

Computer Science & Information Technology

____ networks use a central device to connect each device directly to the network.

A. Star B. Ring C. Bus D. Mesh

Computer Science & Information Technology