Which of the following file types from the accompanying figure has limited image quality but can support transparency?
A. GIF
B. JPEG
C. PNG
D. None of the above
Answer: A
You might also like to view...
The new Windows Market is an online App store integrated with Windows 8.1 that enables users to quickly and easily buy and download small applications (known simply as apps) that may be developed by Microsoft, software vendors, or even independent developers
Indicate whether the statement is true or false
What words are displayed in the list box by the following program segment?
``` Dim deadlySins() As String = {"pride", 'greed', "anger", "envy", "lust", "gluttony", "sloth"} Dim query = From sin in deadlySins Order By sin.Length Descending Select sin.ToUpper lstBox.Items.Add(query.First) lstBox.Items.Add(query.Min) ``` (A) GLUTTONY and GLUTTONY (B) GLUTTONY and SLOTH (C) GLUTTONY and ANGER (D) PRIDE and ENVY