edited by
29,973 views
50 50 votes

Which one of the following protocols is NOT used to resolve one form of address to another one?

  1. $\textsf{DNS}$
  2. $\textsf{ARP}$
  3. $\textsf{DHCP}$
  4. $\textsf{RARP}$

10 Answers

Best answer
48 48 votes

A) $\textsf{DNS}$ - host name to IP address
B) $\textsf{ARP}$ - IP to MAC
D) $\textsf{RARP}$ - MAC to IP

So ANSWER is C

edited by
34 34 votes
Answer is DHCP as given in gate 2016 key too. Because  it assigns an ip address to a host connected to internet. It does not convert any address to another.
27 27 votes

A) DNS - host name to IP address or vice versa
B) ARP - IP to MAC
c) DHCP-MAC to IP

D) RARP - MAC to IP
So answer will be A only  because host name is not an adress as in other options.


 

2 flags:
✌ Edit necessary (P0535_Yedidyah_Sagar “Wrong answer”)
✌ Edit necessary (js__)
3 3 votes

Answer – Option C, DHCP.

DNS, ARP, RARP are all address resolution protocols.

DNS(Domain Name Service) – Resolve Host name to it’s corresponding IP address.

ARP(Address Resolution Protocol) – Resolve IP address to MAC address.

RARP(Reverse Address Resolution Protocol) – Resolve MAC address to IP address.

DHCP(Dynamic Host Configuration Protocol) -- With DHCP, every network must have a DHCP server that is responsible for configuration. When a computer is started, it has a built-in Ethernet or other link layer address embedded in the NIC, but no IP address. Much like ARP, the computer broadcasts a request for an IP address on its network. It does this by using a DHCP DISCOVER packet. This packet must reach the DHCP server. If that server is not directly attached to the network, the router will be configured to receive DHCP broadcasts and relay them to the DHCP server, wherever it is located. When the server receives the request, it allocates a free IP address and sends it to the host in a DHCP OFFER packet (which again may be relayed via the router). To be able to do this work even when hosts do not have IP addresses, the server identifies a host using its Ethernet address (which is carried in the DHCP DISCOVER packet)

1 1 vote
All answers except DHCP mentioned here convert one form of address to another. Yes a hostname is also a type of address in this context.

 

DHCP assigns. Doesn't convert. It assigns an address.
Answer:
Position:
Show:

Related questions

28 28 votes
5 answers 5 answers
11.6k
11.6k views
Sandeep Singh asked Feb 12, 2016
11,580 views
Consider that $B$ wants to send a message $m$ that is digitally signed to $A$. Let the pair of private and public keys for $A$ and $B$ be denoted by ${K_{x}}^-$ and ${K_{...
58 58 votes
5 answers 5 answers
19.8k
19.8k views
Sandeep Singh asked Feb 12, 2016
19,773 views
Let $X$ be a recursive language and $Y$ be a recursively enumerable but not recursive language. Let $W$ and $Z$ be two languages such that $\overline{Y}$ reduces to $W$,...
52 52 votes
4 answers 4 answers
22.8k
22.8k views
Sandeep Singh asked Feb 12, 2016
22,827 views
Consider a computer system with $40$-bit virtual addressing and page size of sixteen kilobytes. If the computer system has a one-level page table per process and each pag...
39 39 votes
4 answers 4 answers
17.7k
17.7k views
Sandeep Singh asked Feb 12, 2016
17,670 views
The worst case running times of Insertion sort , Merge sort and Quick sort, respectively are:$\Theta (n \log n)$, $\Theta (n \log n)$ and $\Theta(n^2)$$\Theta (n^2)$, $\T...