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...

To export a report as an email attachment, click the _____ button in the Export group of the tab on the Ribbon.

A. Attach B. Send C. Email D. PDF

Computer Science & Information Technology

____ also work well on tablets and phones.

A. Windows apps B. Desktop apps C. Charms D. Operating apps

Computer Science & Information Technology

To enjoy the benefits of email and the web at home, a person must first connect his or her computer to the World Wide Web. _________________________

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

Computer Science & Information Technology

Give code and the drawing to make clear what you are doing.

Here is a diagram of a three node linked list with a head pointer and a node to be inserted. Show all steps necessary to delete the second node, pointed to by discard_me. You may assume the necessary search for the node to be deleted is done and the pointer discard_me is already positioned.
You are to make clear the sequence of steps by either numbering the steps, or by making several copies of this drawing, with one change per drawing, numbered to show the sequence.
You may assume that a search routine taking a head pointer and data arguments has been defined for you.
```
NodePtr discard_me;
NodePtr temp_ptr;
```

Computer Science & Information Technology