What was the basis of building ARPAnet?

Answers

Answer 1

The basis of building ARPAnet is due to the zeal or the desire to assign  information over wide  distances without the use of  dedicated phone connections that will exist between all computer on a network.

What is ARPANET?

ARPANET is known to be the very first network that was said to be made up of distributed control.

Note that It was said to be implement TCP/IP protocols as it is the one that starts the use of Internet along  with use of these technologies.

Therefore, The basis of building ARPAnet is due to the zeal or the desire to assign  information over wide  distances without the use of  dedicated phone connections that will exist between all computer on a network.

Learn more about ARPAnet from

https://brainly.com/question/13721059
#SPJ1


Related Questions

Hi all i have a quick question what are some incidence of malware

Answers

Answer:

Privilege escalation: Another type of malware attacks is privilege escalation. A situation where the attacker gets escalated access to the restricted data. Evasion: Evasion is another type of malware attack. The techniques malware maker design to avoid detection and analysis of their malware by security systems.

Fewer than 1% of scanned sites in the US, UK, and Germany, and Spain were found to contain malware (although Spain did spike to 3% briefly earlier in the year). 10. The number of malware attacks declined for the first time since 2016 The number of new malware attacks declined for the first time since 2015.The most devastating type of malicious programs, by some counts. Definitely one of the most advanced and constantly on the rise these days. Ransomware blocks access to the data of a victim, threatening to either publish it or delete it until a ransom is paid.

Explanation:

help me by marking me brainlest

it is from my science book

A prime number is a positive integer that is evenly divisible only by 1 and itself. Write a predicate function called is_prime that accepts an integer parameter and returns true if that number is prime and false otherwise. Assume that the parameter is a positive integer.

Answers

The requirement of the given question is that we need to write a function that takes a positive integer number as a parameter and checks if the number is a prime number or not. If the number is a prime number then it returns true. But if the number is not a prime number then it returns false.

The required function is written here in Python:

def is_prime(number): ''' This is function named “is_prime” that accepts a     positive integer “number” as a parameter’’’

if number < 2: '''It checks if the “number” is less than 2. The smallest                                                   prime number is 2 so no need to check numbers less                                              than 2'''

return False ''' If the above condition is true , it returns “false” that the                 “Number” is not prime.'''

for i in range(2, number):  '''This is for loop runs with an increment of one through all numbers specified in the “range function”                                             i.e. from 2 to the value of “number” exclusively'''

  if (number % i) == 0:     ''' Checks if ”0” remainder is found, then           the “number” is not prime'''

    return False        # “Number” is not prime so it returns “false”

return True '''When it has looped through the entire range of                                                               values from 2 to “number-1” and does not find a value that gives “0” remainder, then the “number” is prime, thus returns “true”.'''

You can learn more about prime number at

https://brainly.com/question/145452

#SPJ4

In which step of the troubleshooting process would a technician have to do more research on the internet or within the computer manual in order to solve a problem?

Answers

A technician would need to conduct additional research on the internet or in the computer manual as part of the troubleshooting process to establish a plan of action to fix the problem and apply the remedy.

A technician should investigate potential fixes after determining the root of the issue, sometimes by visiting multiple websites and consulting manuals. Troubleshooting is a type of problem resolution that is frequently used to fix broken components or operations on a machine or a system.

In order to address an issue and get the product or process back in operation, a logical, methodical search for the problem's source is required.

Learn more about troubleshooting https://brainly.com/question/14102193

#SPJ4


What is the difference between a mechanical and electronic computer?

Answers

The main difference between a mechanical and electronic computer is their composures. A mechanical computer is made from mechanical materials such as gears, levers, and many other physical features. An electronic computer, on the other hand, is made of electronic materials.

Which situation indicates an internal control risk in the general ledger/financial reporting systems?

Answers

The employee who maintains the cash receipts journal records transactions in the accounts receivable subsidiary ledger indicates an internal control risk in the general ledger/financial reporting systems.

Internal control risks are dangers that compromise the effectiveness and efficiency of internal controls, which then compromise goal achievement. Both operation risk and compliance risk include them.

An internal control framework is made up of five interconnected elements: monitoring, information and communication, risk assessment, control activities, and the control environment.

The procedure used by management to identify risks and assess the possibility and impact of a risk event is known as risk assessment. The evaluation of internal controls can be done concurrently. In order to identify any gaps between risks and controls, the risk assessment is used to map internal controls to the risks.

Learn more about financial reporting:

https://brainly.com/question/17322675

#SPJ4

Each of the numeric wrapper classes has a static tostring method. what do these methods do?

Answers

Each of the numeric wrapper types has a fixed tostring way. These plans do converts numbers to string

What is a numeric wrapper?The classes Byte, Short, Integer, Long, Float, and Double are wrapper classes for numbers. Each of them derives from the Number class. The class of numbers is abstract. A Number class object cannot be created. The abstract class Number includes all of the wrapper classes (Integer, Long, Byte, Double, Float, and Short). The relevant primitive data type is contained or wrapped in the object of the wrapper class. Boxing is the process by which primitive data types are transformed into objects, and the compiler handles this. In order to turn any data type into an object, wrapper classes are utilized. Java's wrapper classes are used to transform primitive types into the appropriate objects. There are matching wrapper classes for each of the 8 primitive kinds.

To learn more about numeric wrapper, refer to:

https://brainly.com/question/16613694

#SPJ4

When shortening an internet protocol (ip) v6 address, which two rules are used? check all that apply.

Answers

The two principles to follow when shortening an internet protocol (ip) v6 address are to replace groups of zeros with colons and eliminate all leading zeros.

Internet Protocol version 6 is the most recent iteration of the protocol that controls traffic on the Internet and acts as an identity and location system for devices on networks (IPv6).

In order to solve the long-anticipated issue of IPv4 address exhaustion and eventually replace IPv4, the Internet Engineering Task Force (IETF) developed IPv6. An further technological benefit of IPv6 is that it has a larger addressing space.

Learn more about IPv6 https://brainly.com/question/15733937

#SPJ4

Why do software developers prefer to use high-level language to author programs?
It can be used on computers without microprocessors.
It prevents anyone from making changes to the software later.
It uses a more English-like syntax.
It’s less complicated because it only uses zeros and ones.

Answers

The reason software developers prefer to use high-level language to author software programs is because: C. It uses a more English-like syntax.

What is a software?

A software can be defined as a set of executable instructions that is typically used to instruct a computer system on how to perform a specific task (function) and proffer solutions to a particular problem.

What is a compiler?

A compiler can be defined as a software program that is designed and developed to translate the entire source code of program at once, in order to produce an object code.

This ultimately implies that, a compiler translates a software program that is written in a high-level language into low-level language (machine language).

In conclusion, the reason software developers prefer to use high-level language to author software programs is because it is designed and developed to use a more English-like syntax.

Read more on software syntax here: https://brainly.com/question/19176627

#SPJ1

The defining of tasks that are required for input data to be processed into output is part of the _______ step.

Answers

Part of the processing requirement step include defining task that must be required in order for input data to be processed into output. Process requirements define guidelines and benchmarks for organizing and carrying out tasks (workflows, processes, procedures, tasks).

A corporate organization will develop procedures, processes, and strategies to be used in order to produce a specific outcome (product or service) that materializes or fulfills the first stated needs in process requirements. Stepping through a list of duties is necessary to determine the needs for a procedure.

Follow the link below to learn how a product is verified to determine whether it meets the requirements

https://brainly.com/question/24613576

Assume that two int variables named distance and speed have been declared and assigned values. Also assume that a double variable named result has been declared. Write a statement that divides distance by speed and assigns the result to the result variable. Be sure to write your math expression in such a way that the result is a floating-point value

Answers

The required statement that divides “distance” by “speed” and stores the obtained result in the variable “result” is “result = (double) distance/speed”.

Given two variables “distance” and “speed” in a program that both are assigned with some integer values. Since we need to produce the result of division as a floating-point value, so one of the two integer type variables i.e. “distance” and “speed” is converted to float type using the cast operator (double). Further, we are required to assign the result of the division to the already declared double type variable named “result”.

According to the requirement of the question, we need to write a statement that produces a floating-point result when dividing the integer type values of “distance” and “speed” and assigns the result to the double variable i.e. “result”. The following statement fulfills the requirement of the given question and produces the desired result.

result = (double) distance/speed;

You can learn more about casting operator at

https://brainly.com/question/14690025

#SPJ4

Even more dangerous than trojan programs are ____________________ containing trojan binary programs ready to be installed by an intruder who has gained root access to a system.

Answers

Even additional difficult than trojan programs are Rootkits containing trojan binary programs ready to be established by an intruder who has achieved root entry to a system.

What purposes does Trojan software serve?A dangerous piece of code or software that mimics genuine software but has the ability to take over your computer is known as a Trojan horse. A Trojan is intended to harm your data or network by stealing from it, causing disruption, or performing other harmful actions. To fool you, a Trojan pretends to be an authentic application or file. A Trojan is a sort of virus that can be extremely destructive, wiping out data or even the entire contents of the hard drive. Trojans can also intercept and resend private information to an outside location or open communication ports, giving an intruder remote access to the compromised computer.

To learn more about trojan programs, refer to:

https://brainly.com/question/12382717

#SPJ4

Write a program that inputs the length of two pieces of wood in yards and feet (as whole numbers) and prints the total.
MUST BE IN PYTHON

Answers

The program that inputs the length of two pieces of wood in yards and feet (as whole numbers) and prints the total is given below:

The Program

#Getting inputs from the User

feet_1= int(input("Enter the first length in feet: "))

inche_1 = int(input("Enter the first length in inches "))

feet_2 = int(input("Enter the second length in feet: "))

inche_2 = int(input("Enter the second length in inches "))

# Calculations

inches = inche_1 + inche_2

inc_to_ft = inches // 12

rem_from_div = inches % 12

sum_ft = a_ft + b_ft + inc_to_ft

#Printing the final result

print("Feet: {} Inches: {}".format(sum_ft, rem_from_div))

Read more about computer programs here:

https://brainly.com/question/23275071

#SPJ1

Which computer science career is responsible for creating code for software? programmer hardware engineer user interface designer cybersecurity analyst

Answers

Answer:

programmer ⠀⠀⠀ ‌⠀⠀⠀ ‌⠀⠀⠀ ‌

What are the different types of evaluations an instructional designer/trainer would conduct and how are they different? (

Answers

As an instructional designer or trainer, there are a variety of different types of evaluations you can conduct in order to gauge the effectiveness of your training. Here are some of the most common types of evaluations and how they differ:

1. Formative evaluations are conducted throughout the training process in order to gather feedback and make improvements.

2. Summative evaluations are conducted at the end of the training in order to assess the overall effectiveness of the training.

3. Impact evaluations are conducted after the training is complete in order to assess the long-term impact of the training.

4. Needs assessments are conducted at the beginning of the training process in order to identify the needs of the participants.

Each of these evaluations serves a different purpose, so it's important to choose the right evaluation for your needs. Formative and summative evaluations are generally the most useful for making improvements to the training, while impact evaluations can be helpful in assessing the long-term effectiveness of the training.

Learn more on evaluations here:

https://brainly.com/question/26719973

#SPJ4

Other Questions
please helpplease hurry Explain why a physical fitnwess plan that causs a reduction of blood pressure is beneficial =210+10/ 7x10x10 The price of a DVD is $6.5. It increase by 10% then another 30%Use a multiplier and do this in only multiplying 2 timesThanks for helping Where is Poland in Europe! Help me!! mr mechoui is raising sheep. He has approximately 800 before going to bed he counts them by 10 by 12 and by 15 each time he finds the exact number. how many sheep does he have exactly ? Which of the following represents an INEFFICIENT point of production?a. Point Ab. Point Bc. Point Dd. Nonee. Point C Why do you think that it is important to learn about points, lines, and planes? can u please help me write a short story? According to elkind, what is a limitation of adolescents' newfound capacity for self-consciousness? Computing a percent mixtureA chemist mixes 225 milliliters of a solution that is 39% acid with 25 milliliters of a solution that is 19% acid.Answer the questions below. Do not do any rounding.(a) How many milliliters of acid are in the resulting mixture?milliliters(b) What percentage of the resulting mixture is acid?0% John adams elected president 1796: what problems occurred because of the elections? Which of the following is the main theme of Crevecoeurs writings about colonial America? Which type of outline structure do you incorporate complete sentences?A. scratch outline.B. formal outline.C. A working list.D. An informal outline. Michael Jordan relates to basketball as Isaac Newton relates to whatfield?O biomechanicsO physiologyO physicsO sports biomechanics Find the percent change. Andy's bank account went from $99 to $70. What is the mass % of ethylene glycol in a 1.81 M solution of ethylene glycol (MM = 62.07 g/mol) in water? The density of the solution is 1.07 g/mL. A company makes desks, coffee tables, and corner tables. Each item uses units of wood, fabric, and stuffing. Desks use 50 units of wood, 40 units of fabric, and 45 units of stuffing.Coffee tables use 30 units of wood, 15 units of fabric, and 10 units of stuffing.Corner tables use 5 units of wood, 5 units of fabric, and 5 units of stuffing.There are 690 units of wood, 620 units of fabric, and 510 units of stuffing available to make the items.Which three equations are needed to find the largest number of x desks, y coffee tables, and z corner tables that can be made?Drag and drop the correct equations into the box. During times of stress, the adrenal glands secrete the hormone:_________ a) insulin. b) dopamine. c) serotonin. d) cortisol. uppose a person who is 81 inches tall casts a shadow that is 94.5 inches long. Another person in the same place casts a shadow that is 84 inches long. Determine the height of the second person.