Match each of the following TCP/IP suite protocols to its definition:

I. SMTP
II. DHCP
III. HTTP
IV. TCP
V. IP

A. transfers data from servers to browsers
B. prepares data for transmission providing for error checking and resending lost data
C. used for transmission of e-mail messages across the Internet
D. sends data between computers on the Internet
E. protocol that assigns dynamic IP addresses

C, E, A, B, D

Computer Science & Information Technology

You might also like to view...

What words are displayed in the list box by the following program segment?

``` Dim deadlySins() As String = {"pride", "greed", "anger", "envy", "lust", "gluttony", "loth"} Dim query = From sin in deadlySins Order By sin Ascending Where sin.StartsWith("g") Select sin lstBox.Items.Add(query.First) lstBox.Items.Add(query.Max) ``` (A) gluttony and greed (B) gluttony and gluttony (C) pride and gluttony (D) greed and greed

Computer Science & Information Technology

?Which of the following HTML attributes is used to create a single cell that occupies more than one cell from a series of horizontal cells?

A. ?rowwidth B. ?colspan C. ?rowspan D. ?colwidth

Computer Science & Information Technology