What is a large public computer network through which computers can exchange information at high speed?​

Answers

Answer 1

Answer:

Server

Explanation:

The Question is vauge, but I believe a Server is the word you're looking for. Computer Network could mean various things, in this case im going to assume that by Network, its saying Server. As a server is what allows for high speed interactions between a host computer and a client computer.


Related Questions

Answers must be correct. Or else it will be flagged. All of these sub parts need to be answered with step by step process showing all work and reasoning.
DISCRETE STRUCTURES:
1.a. Truth value of a propositional statement For this exercise, it is easier not to use truth tables.
1. Suppose that A → ((BAC)-D) is false. What are the truth values of A, B, C, and D?
2. Suppose that (A-B) v (CA (DAE)) → F) is false.
What are the truth values of A, B, C, D, E, and F?
1.b. Logical equivalence Prove the equivalences below without using truth tables. Instead, use the rules of logical equivalence given in class. Justify your reasoning.
1.c. Inference Formalize the following argument and show that it is valid.
If Jose took the jewellery or Mrs. Krasov lied, then a crime was committed. Mr. Krasov was not in town. If a crime was committed, then Mr. Krasov was in town. Therefore Jose did not take the jewellery

Answers

Note: The complete part of question 1b is attached as a file

Answer:

1ai) A = true, B = true, C = true, D = false

Check the attached files for the answers of the remaining parts

Explanation:

The detailed solutions of all the sections of the question are contained in the attached files

When law enforcement becomes involved, the need may arise to freeze systems as part of the evidence. There is also the likelihood that the incident will become known publicly. Do you think these issues play a significant part in the decision to involve law enforcement? Why or why not? Can you name some situations in which you believe that large organizations have decided not to involve law enforcement?

Answers

Answer:

Costs will cover a need for more customer data. The further explanation is given below.

Explanation:

It's the greatest problem for almost every company to provide the data with security. This is possible for highly trained practitioners and the technical staff to take charge of it. Complicated technologies would have been going to run together again to withstand these types of jobs.Such problems play a major part in the decision-making process affecting the law enforcement authorities to locate the suspects to strengthen the organization.To do something like this, there seem to be a lot of other good initiatives out there doing it.

There have been some cases in which major corporations have chosen not to include law enforcement:

There are many more electronic corruption going on, including money robbery, asset fraud, as well as machine assaults. In such a bigger case, numerous institutions, such as large-scale ones, have gone through these circumstances to evaluate law enforcement to come to terms with cybersecurity.

A/an ____ file saves a workbook as a comma-delimited text file for use on another windows operating system??

A. XPS
B. TXT
C. ODS
D. CVS

Answers

Answer:

The correct option is D

D) CVS

Explanation:

A CVS file saves a workbook as a comma-delimited text file for use on another windows operating system. It ensures that line breaks, tab characters and other characteristics are interpreted correctly.

A CVS file stands for Comma Separated Value file, which basically allows the data to be saved in tabular format. However they differ from other spreadsheet file types because you can only have a single sheet in a file. Moreover, you cannot save cell, column or row in it.

Probability of theft in an area is 0.03 with expected loss of 20% or 30% of things with probabilities 0.55 and 0.45. Insurance policy from A costs $150 pa with 100% repayment. Policy with B, costs $100 pa and first $500 of any loss has to be paid by the owner. Which data mining technique can be used to choose the policy?

Answers

Answer:

Decision trees

Explanation:

Decision trees mainly include categorization and estimation. It is often used as a measure of selection. This also encourages the usage and choice of particular data within the overall structure.

In the given situation, we should choose Policy A has cost $150 as it has 100% repayment while on the other hand Policy B has cost $100 and the first $500 of loss would be paid by the owner

So for choosing the policy,  we use the decision tree data mining technique as we have to take the decision with respect to minimizing the cost

Data mining technique which can be used to choose the policy is decision tree.

The data mining technique that can be used are as follows,

Categorization and estimate are the two major functions of decision trees,Decision tree frequently used as a selection criterion. This promotes the use and selection of specific data within the broader framework.

According to given data,

We should pick Policy A, which costs $150 and has a 100% payback rate.Whereas, the owner would be responsible for the first $500 of loss under Policy B, which costs $100.

Here choosing the correct policy, decision tree is used.

Learn more: brainly.com/question/15247828

Which of the following is an example of joint problem solving?

Answers

Explanation:

There is a high degree of informality to these relationships, which are focused on information sharing, joint-problem solving and joint operations.

A hallmark of most of these processes is their informality, whether through information sharing, joint problem solving or joint operations.

Global joint problem-solving team. In addition to requesting a division of labour, the Global Task Team recommendations called upon the World Health Organization (WHO), UNICEF, the United Nations Population Fund (UNFPA), the United Nations Development Programme (UNDP), the World Bank, the UNAIDS Secretariat and the Global Fund to take the lead in and establish the joint United Nations system-Global Fund problem-solving team by July # in order to support efforts that address implementation bottlenecks at the country level

Managers can use __ software to discuss financial performance with the help of slides and charts

Answers

Answer:

presentation

Explanation:

Software like Google Slides and Microsoft Powerpoint can be utilized to present financial performances through the use of slides and charts.

Two of the most fundamental functions for dealing with interprocess communication are read() and write(). Consider the following otherwise valid C program:int r, pipeFDs[2];
char message[512];
pid_t spawnpid;

pipe(pipeFDs);
spawnpid = fork();

switch (spawnpid)
{
case 0:
close(pipeFDs[0]); // close the input file descriptor
write(pipeFDs[1], "hi process, this is the STUFF!!", 21);
break;

default:
close(pipeFDs[1]); // close output file descriptor
r = read(pipeFDs[0], message, sizeof(message));
printf("Message received from other: %s\n", message);
break;
}

Select each of the following answers that is correct. CAN BE MULTIPLE CHOICES...
(1) The read() call may block until data becomes available
(2) When the read() call returns, this one call will return all of the data that was sent through the pipe, which is different behavior than if this was a socket
(3) If the read() call blocks, the process will be suspended until data arrives
(4) The write() call will return before all of the data has been written, if the corresponding read() call blocks mid-transfer
(5) Pipes can fill, which will cause the write() call to block until the read() call is able to read data from the pipe

Answers

Answer: Provided in the explanation section

Explanation:

int r, pipeFDs[2];

char message[512];

pid_t spawnpid;

pipe(pipeFDs);

spawnpid = fork();

switch (spawnpid)

{

case 0:

close(pipeFDs[0]); // close the input file descriptor

write(pipeFDs[1], "hi process, this is the STUFF!!", 21);

break;

default:

close(pipeFDs[1]); // close output file descriptor

r = read(pipeFDs[0], message, sizeof(message));

printf("Message received from other: %s\n", message);

break;

}

Observation of the program:

The read() call may block until data becomes available If the read() call blocks, the process will be suspended until data arrives Pipes can fill, which will cause the write() call to block until the read() call is able to read data from the pipe

⇒ Therefore,Option 1,3 and 5 correct

Cheers i hope this helped !!!

is brainly down? Cant search anything

Answers

You need to have WIFI
Other Questions
Why was Ra significant to the Egyptians? What is the mode of this set of data? Please Help Quick ASAP HurryRead the excerpt from Antigone.Haimon: Not here, no; she will not die here, King.And you will never see my face again.Go on raving as long as youve a friend to endure you.Which conclusion can best be drawn based on the information presented in the excerpt?A. The exposition of the play has been introduced; we have been introduced to the main character, Creon and his external conflict with his son.B. The complicating incident of the play has been revealed; Creon's decision to ignore his son's needs sets off the play's main conflict.C. The play has reached its climax, because Creon has allowed his pride to interfere with his own family's well-being.D. The resolution of the play has been revealed; Haimon and Antigone will leave town as a result of Creon's cruelty. where are people mostly exposed to chemicals? Choose whether each statement represents an advantage for the North or the South.1. Strong military leadership 2. Factory production 3. Transportation 4. Size of population 5. Support for the war 6. Mature governmen According to the Rational Root Theorem, Negative two-fifths is a potential rational root of which function? f(x) = 4x4 7x2 + x + 25f(x) = 9x4 7x2 + x + 10f(x) = 10x4 7x2 + x + 9f(x) = 25x4 7x2 + x + 4 Which of the following factors are relevant to selecting a topic for a research paper?your access to research materialyour interest in the topicyour classmates opinions on the topicyour teachers guidelines for the paper Gabrielle went on a 72 mile trip to a soccer game. On the way back, due to road construction she had to drive 18 miles per hour slower. This made the trip take 9 hours longer. How fast did she drive to the soccer game? Can the two triangles be proven congruent by SAS? Explain. answers: A) Yes. The shared side, image, provides enough information for SAS. B) No. There's only enough information provided for ASA. C) Yes. Angle B and angle D can be assumed to be right angles. D) No. The shared side, image, would provide enough information for SSA, but this is not a congruence theorem. The volume of a gas is 450 mL when its pressure is 1.00 atm. If the temperature of the gas does not change, what is thepressure when its volume is changed to 2.00 L?Use PV = P2V2.0.225 atmO 0.444 atmO 2.25 atmO 4.44 atm Which statement explains the irony of Harburg's description of the bread line? Elaborate on two instances at the workplace where "silence is golden " may be applicable. Write as an algebraic expression I know it's Negative Correlation buy I'm so confused on b.... Harrod Company paid $5,800 for a 4-month insurance premium in advance on November 1, with coverage beginning on that date. The balance in the prepaid insurance account before adjustment at the end of the year is $5,800, and no adjustments had been made previously. The adjusting entry required on December 31 is: A cylinder has a volume of 24 cubic feet. Which of the following could have the same radius and height as the cylinder? A A cone with a volume of 32 cubic feet B A sphere with a volume of 18 cubic feet C A cone with a volume of 72 cubic feet D A cone with a volume of 8 cubic feet Between Julius Caesar and Alexander the Great, which leader was more successful? What translation was used to ABCD to produce A BCD 11. What's the term for a work situation in which each worker focuses on a single, specific task in the production process?A CapitalismOB IndustrializationC. Division of laborD. Mechanization Can someone please help