The sound quality of ____ files is poorer than that of MP3 files.

A. AIFF
B. QuickTime
C. WAV
D. RealAudio


Answer: D

Computer Science & Information Technology

You might also like to view...

To perform a task for a given state of a MediaPlayer, you specify an object that imple- ments interface __________ (package java.lang).

What will be an ideal response?

Computer Science & Information Technology

The ________ formula displays in the formula bar

A) underlying B) value C) calculated D) arithmetic

Computer Science & Information Technology

What security control may be used to implement a concept known as two-person control?

A. Mandatory vacation B. Separation of duties C. Least privilege D. Defense in depth

Computer Science & Information Technology

What will the following code display?

``` #include using namespace std; void showDub(int); int main() { int x = 2; showDub(x); cout << x << endl; return 0; } void showDub(int num) { cout << (num * 2) << endl; } ``` a. 2 2 b. 4 2 c. 2 4 d. 4 4

Computer Science & Information Technology