Why was the Internet's Domain Name System (DNS) created?

What will be an ideal response?


With a name server on a network, all one needed to know to communicate with a resource was the name server's IP address and the resource name. This method worked for local networks, but new problems emerged when dealing with resources on the Internet. For instance, if every computer on the Internet had resource information (also known as a resource record) stored on one name server, you can imagine how difficult it would be to sift through these records to find the one resource you're looking for. Management also becomes a problem. To manage the Internet, it's important to know which entity is responsible for which information. To address these problems, Domain Name System was developed.

Computer Science & Information Technology

You might also like to view...

Which of the following version numbers is an example of a major policy revision?

A) 3.5 B) 4.0 C) 4.1 D) 5.1

Computer Science & Information Technology

What does the following algorithm do? What is its time complexity?

``` public static int doSomething( int array[], int n ) { int k = 0; // find the largest value in the range array[0] to array[n-1] for ( int i = 1; i < n; i++ ) if ( array[i] > array[k] ) k = i; // postcondition: array[k] is the largest value in array // Swap the largest value with the value in position 0 int temp = array[0]; array[0] = array[k]; array[k] = temp; k = 1; // find the largest value in the range array[1] to array[n-1] for ( int i = 2; i < n; i++ ) if ( array[i] > array[k] ) k = i; // postcondition: array[k] is the SECOND largest value in array return array[k]; } ```

Computer Science & Information Technology

Where is the Share Workbook command located within Excel?

A) Data tab B) Review tab C) Insert tab D) Formulas tab

Computer Science & Information Technology

The key and certificate life cycle management concludes with the ____ phase.

A. issued B. registration C. certification D. cancellation

Computer Science & Information Technology