1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
lions [1.4K]
3 years ago
13

Look at the home page of the Internet Society (www.internetsociety.org) and read about one of the designers of the original ARPA

NET—Larry Roberts, Leonard Kleinrock, Vinton Cerf, Robert Kahn, John Postel, or others. Learn about the early days of networking and the contributions that these individuals made to the ultimate development of the Internet. The home page of the Internet Society has links to many other places that provide a wealth of fascinating information about networks in general and the Internet and the web in particular.
Engineering
1 answer:
krek1111 [17]3 years ago
6 0

Answer:

<u>ARPANET is the direct precedent for the Internet, a network that became operational in October 1969 after several years of planning. </u>

Its promoter was DARPA (Defense Advanced Research Projects Agency), a US government agency, dependent on the Department of Defense of that country, which still exists.

Originally, it connected research centers and academic centers to facilitate the exchange of information between them in order to promote research. Yes, being an undertaking of the Department of Defense, it is understood that weapons research also entered into this exchange of information.

It is also explained, without being without foundation, that the design of ARPANET was carried out thinking that it could withstand a nuclear attack by the USSR and, hence, probably the great resistance that the network of networks has shown in the face of major disasters and attacks.

It was the first network in which a packet communication protocol was put into use that did not require central computers, but rather was - as the current Internet is - totally decentralized.

Explanation:

<em><u> Below I present as a summary some of the most relevant aspects exposed on the requested website about the origin and authors of ARPANET:</u></em>

<em><u></u></em>

1. Licklider from MIT in August 1962 thinking about the concept of a "Galactic Network". He envisioned a set of globally interconnected computers through which everyone could quickly access data and programs from anywhere. In spirit, the concept was very much like today's Internet. He became the first head of the computer research program at DARPA, and from October 1962. While at DARPA he convinced his successors at DARPA, Ivan Sutherland, Bob Taylor and MIT researcher Lawrence G. Roberts, of the importance of this network concept.

2.Leonard Kleinrock of MIT published the first article on packet-switching theory in July 1961 and the first book on the subject in 1964. Kleinrock convinced Roberts of the theoretical feasibility of communications using packets rather than circuits, That was an important step on the road to computer networking. The other key step was to get the computers to talk together. To explore this, in 1965, working with Thomas Merrill, Roberts connected the TX-2 computer in Mass. To the Q-32 in California with a low-speed phone line creating the first wide-area (albeit small) computer network built . The result of this experiment was the understanding that timeshare computers could work well together, running programs and retrieving data as needed on the remote machine, but that the circuitry switching system of the phone was totally unsuitable for the job. Kleinrock's conviction of the need to change packages was confirmed.

3.In late 1966 Roberts went to DARPA to develop the concept of a computer network and quickly developed his plan for "ARPANET", and published it in 1967. At the conference where he presented the document, there was also a document on a concept of UK packet network by Donald Davies and Roger Scantlebury of NPL. Scantlebury told Roberts about NPL's work, as well as that of Paul Baran and others at RAND. The RAND group had written a document on packet switched networks for secure voice in the military in 1964. It happened that work at MIT (1961-1967), in RAND (1962-1965) and in NPL (1964-1967) all they proceeded in parallel without any of the investigators knowing about the other work. The word "packet" was adopted from the work in NPL and the proposed line speed to be used in the ARPANET design was updated from 2.4 kbps to 50 kbps.

You might be interested in
Using an "AND" and an "OR", list all information (Equipment Number, Equipment Type, Seat Capacity, Fuel Capacity, and Miles per
Tomtit [17]

Answer:

Explanation :

The given  information to be listed can are Equipment Number, Equipment Type, Seat Capacity, Fuel Capacity, and Miles per Gallon.

Check the attached document for the solution.

5 0
3 years ago
Write a program that prompts for a line of text and then transforms the text based on chosen actions. Actions include reversing
nlexa [21]

Answer:

public class TextConverterDemo

{

//Method definition of action1337

public static String action1337(String current)

{

//Replace each L or l with a 1 (numeral one)

 current = current.replace('L', '1');

 current = current.replace('l', '1');

 

 //Replace each E or e with a 3 (numeral three)

 current = current.replace('E', '3');

 current = current.replace('e', '3');

 //Replace each T or t with a 7 (numeral seven)

 current = current.replace('T', '7');

 current = current.replace('t', '7');

 //Replace each O or o with a 0 (numeral zero)

 current = current.replace('O', '0');

 current = current.replace('o', '0');

 

//Replace each S or s with a $ (dollar sign)

 current = current.replace('S', '$');

 current = current.replace('s', '$');

 return current;

}

//Method definition of actionReverse

//This method is used to reverses the order of

//characters in the current string

public static String actionReverse(String current)

{

 //Create a StringBuilder's object

 StringBuilder originalStr = new StringBuilder();

 //Append the original string to the StribgBuilder's object

 originalStr.append(current);

 //Use reverse method to reverse the original string

 originalStr = originalStr.reverse();

 

 //return the string in reversed order

 return originalStr.toString();

}

//Method definition of main

public static void main(String[] args)

{

    //Declare variables

 String input, action;

 

 //Prompt the input message

 System.out.println("Welcome to the Text Converter.");

 System.out.println("Available Actions:");

 System.out.println("\t1337) convert to 1337-speak");

 System.out.println("\trev) reverse the string");

 System.out.print("Please enter a string: ");

   

 //Create a Scanner class's object

 Scanner scn = new Scanner(System.in);

 

 //Read input from the user

 input = scn.nextLine();

 do

 {

  /*Based on the action the user chooses, call the appropriate

   * action method. If an unrecognized action is entered then

   * the message "Unrecognized action." should be shown on a

   * line by itself and then the user is prompted again just

   * as they were when an action was performed.

   * */

  System.out.print("Action (1337, rev, quit): ");

  action = scn.nextLine();

  if (action.equals("1337"))

  {

   input = action1337(input);

   System.out.println(input);

  } else if (action.equals("rev"))

  {

   input = actionReverse(input);

   System.out.println(input);

  } else if (!action.equals("quit"))

  {

   System.out.println("Unrecognized action.");

  }

 } while (!action.equals("quit"));

 System.out.println("See you next time!");

 scn.close();

}

}

7 0
3 years ago
Problem 2. The length of a side of the square block is 4 in. Under the application of the load V, the top edge of the block disp
White raven [17]

Answer and Explanation:

The answer is attached below

8 0
3 years ago
What type of cartilage provides support and shock absorption?.
Katena32 [7]

Answer:

fibrocartilage

7 0
2 years ago
How can I draw this image in 2D form
Ket [755]

Answer:

no it is not 2D

Explanation:

it is 3D

ok so follow these steps

- make hole

-make square

-make triangle

ok now your figure is ready

5 0
2 years ago
Other questions:
  • In C++ the declaration of floating point variables starts with the type name float or double, followed by the name of the variab
    14·1 answer
  • I need solution for this question please ​
    7·2 answers
  • Air expands through an ideal turbine from 1 MPa, 900 K to 0.1 MPa, 500K. The inlet velocity is small compared to the exit veloci
    10·1 answer
  • A power of 100 kW (105 W) is delivered to the other side of a city by a pair of power lines, between which the voltage is 12,000
    9·1 answer
  • The 10mm diameter rod is made of Kevlar 49. Determine the change in
    7·1 answer
  • Add my sc please?.<br><br> kindacracked
    12·2 answers
  • Quinn’s relatives relayed a story about putting on a headset and seeing a digital world that they could walk around in and explo
    8·2 answers
  • Differentiate between isohyetal method and arithmetical average method of rainfall​
    10·1 answer
  • Which type of smoke indicates excessive fuel being burned in the combustion chamber
    15·2 answers
  • Raw materials used of silicone rubber
    6·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!