Match the following terms to their meanings:

I. Enables you to use your computer as a home A. Media Library
entertainment center
II. The amount of information saved per second B. 10-foot interface
III. List that contains the music and video files C. bit rate
IV. Term for connecting your Windows Media Center to a TV D. Windows Media Center
and using a control
V. Term for watching Windows Media Center on a E. 2-foot interface
regular computer

D, C, A, B, E

Computer Science & Information Technology

You might also like to view...

Word provides all the commands necessary for you to publish your blog directly to the host server for your blog

Indicate whether the statement is true or false

Computer Science & Information Technology

What will the following code display?

``` #include using namespace std; int getValue(int); int main() { int x = 2; cout << getValue(x) << endl; return 0; } int getValue(int num) { return num + 5; } ``` a. 5 b. 2 c. 7 d. getValue(x)

Computer Science & Information Technology