Web graphics and e-mail attachments should be stored in a ____ format so they can be transmitted quickly over the Internet.
A. bitmap
B. RAW
C. compact
D. true color
Answer: C
You might also like to view...
What years are displayed in the list box by the following program segment?
``` Dim years() As Integer = {1492, 1776, 1840, 1929, 1945, 2005} Dim query = From year in years Where Is20thCentury(year) Select year For Each yr in query lstBox.Items.Add(yr) Next Function Is20thCentury(num As Integer) As Boolean If (num >= 1900) and (num < 2000) Then Return True Else Return False End IF End Function ``` (A) 1929 and 1945 (B) 1929 (C) 1492, 1776, 1840, 1929, 1945, 2005 (D) No years
The area in the Excel window that displays the contents of the currently selected cell is the ________
A) Cell locator B) Cell display C) Name box D) Address box
The following sentence is punctuated correctly. Elizabeth did errands, then she went to a movie.
Answer the following statement true (T) or false (F)
In OOP terminology, when a class is created from another class, what is the original class called?
A. base B. original C. parent D. derived