Describe how redundancy and fault-tolerance have made the internet robust and scalable even amidst a global pandemic that caused a huge spike in internet traffic.

Answers

Answer 1

Redundancy and fault-tolerance is one that has been built onto systems so that they can be able to withstand any condition. They act as a form of back and working around issues.

What is Redundancy and fault-tolerance?

Redundancy is known to be the inputting of some key back-up elements into a system in the scenario where one part fails.

While Fault tolerance is known to be the capability of a system to still carry out its work around issues. This build up has helped made the internet robust and scalable even amidst a global pandemic that caused a huge spike in internet traffic.

Learn more about redundancy from

https://brainly.com/question/17880618


Related Questions

Which view should be used if you want to see where page breaks will occur in a worksheet?.

Answers

Answer:

Page Break View

Explanation:

Q. Which view should be used if you want to see where page breaks will occur in a worksheet? answer choices Normal View Page Break View

In 2008, researchers at Princeton University demonstrated techniques to retrieve RAM contents after the computer had been powered off. They then extracted drive encryption keys from RAM and used them to decrypt an encrypted drive. This is called a(n):

Answers


It’s called a “Cold Boot” attack

Instrument Air system that employ a standby header shall be permitted to have a simplex cooler and dryer. Where a standby header is provide a ___________ shall be installed to prevent backflow.

Answers

The standby header is provide a check valve shall be installed to prevent backflow.

What is instrument air?

The phrase “Instrument Air” is a term that connote  a thoroughly clean supply of compressed air that is said to be very free from any kind of contaminations such as particles.

Note that a system often utilize instrument air for different kinds of pneumatic tools, also that of valves and electrical controls.

See full question below

Instrument Air system that employ a standby header shall be permitted to have a simplex cooler and dryer. Where a standby header is provided, a ___________ shall be installed to prevent backflow.

answer choices

one way valve

two way check valve

check valve

Isolation valve

Learn more about Instrument from

https://brainly.com/question/26219918

Why should any business consider waiting a little while before purchasing a new technology?

A. Brand new technology is too distracting for staff to use productively.

B. Most new technologies are replaced within a few months.

C. A business should wait for its competitors to try out a new technology, before trusting it.

D. The price of the new technology might decrease as it becomes more common

Answers

Answer:

D. The price of the new technology might decrease as it becomes more common

Explanation:

The price of the new technology might decrease as it becomes more common. The correct option is D.

One of the primary explanations for why a company should think twice before investing in cutting-edge technology is the likelihood that the cost may go down in the future.

Due to its novelty and restricted availability, new technologies frequently have higher prices when they are first introduced.

But as time goes on and the technology is more commonly used, there is more competition, which drives down costs and provides more cheap possibilities.

Businesses can save money and better utilise their resources by waiting for the price to drop.

As a result, they are more equipped to assess the technology's utility and its suitability for their particular requirements and objectives.

Thus, the correct option is D.

For more details regarding technology, visit:

https://brainly.com/question/9171028

#SPJ5

Terry is a drafting technician who designs electronic designs. He uses software to design these design. Which file format does he use to save these drawings?
A. music file format
B. e-book file format
C. image file format
D. CAD file format

Answers

Answer:

D. CAD file format

Explanation:

A user calls to report that she’s unable to log on to e-mail, and you ask a couple of questions. Because you know that no one else is using the network right now, you can’t determine whether the problem is unique to her machine or affects the entire network. Probing further, you learn that she’s also unable to print. You decide this problem is probably easier to troubleshoot from the user’s computer. Using the eight-step problem-solving process, outline the items you must check and the questions you must ask when you arrive at the user’s office. B. Based on the possible responses to your questions, describe the actions you will take to correct potential causes of this problem

Answers

The outline of items that one must check is first to know or clarify the issue, break the issue down, etc.

What is troubleshooting?

This is known to be a step by step approach to problem handling that is often used to know and handle issues with systems etc.  

Others includes:

Set one's target in working on the issue, Analyze the main cause, Develop any form of Countermeasures.Then you Implement the Countermeasures made Monitor the Results that was givenGo through the Process to Standardize it and tell the user that it is solved.

Conclusively, By following the steps, one can know the issue and solve it.

Learn more about troubleshoot from

https://brainly.com/question/14394407

What is the purpose of the website for David and his friends, and why did they choose that type of website?

Dave and his friends create short films and a web series. They want to distribute their work online. Dave and his friends should set up

a(n)

website in order to generate

by providing users access to their content.

Answers

A website is a great way for Dave and his friends to distribute their short films and web series. It allows them to reach a wider audience and share their work with people all over the world. They can also use the website to promote their brand and generate income through advertising or merchandise sales.

What is the website about?

There are several different types of websites that Dave and his friends could choose from, depending on their goals and the features they want to include. One popular option is a video hosting platform, such as You Tube or Vimeo, which provides an easy way to upload and share video content.

Another option is a blog or portfolio website, which would allow them to showcase their work and write articles or blog posts about the creative process. They could even use a combination of both depending on the series and content.

Therefore, the type of website that Dave and his friends choose will depend on their goals and the features they want to include. They could consult a web developer to help them make the best choice for their needs.

Learn more about website  from

https://brainly.com/question/28431103

#SPJ1

The __________ process is designed to find and document vulnerabilities that may be present because there are misconfigured systems in use within the organization.

Answers

answer.

I don't know what it is

Which statement would cause polarization?
a.
"I miss you."
b. "I agree with you."
C.
"You never listen to me."
d. "Can I talk to you?"

Answers

C. “you never listen to me” would cause polarization

When was the first analog device, the phonautograph, launched?
The phonautograph was the first analog device; it launched in _____
.

Answers

Answer:

1860

Explanation:

Hellooo, I need help with python . why is it showing a red line​

Answers

Answer:

Because you should make 4 spaces or tab in def

Explanation:

it must look like:

def move_snake();

   my_pos = my_pos

   x_pos

You’ve been hired to help a bank automate their deposit/withdrawal system! Your task is to write a Python program that interacts with a customer in order to process a deposit or withdrawal.

Assume the customer has an initial balance of $1000 (you should store the number 1000 in a variable). Then, ask the user two things:

Whether they want to make a deposit or withdrawal

For this step, they should type a deposit or withdrawal, depending on what they want to do. It needs to be the exact spelling, including capitalization!
How much money they want to deposit or withdraw

For this step, they should enter an integer.
Then, your program should use an if/elif/else statement to do the following:

If the customer is making a deposit, add the amount to their balance.
If the customer is making a withdrawal, subtract the amount from their balance.
If the customer typed something other than "deposit" or "withdrawal", print "Invalid transaction.".
In this case, the customer’s final balance is just the same as their initial balance.
Finally, your program should use an if/else statement to do the following:

If the customer’s final balance would be negative (less than zero), tell them "You cannot have a negative balance!".
Otherwise, report their final balance.
Here are some examples of what running your program should look like:

Example 1:

Deposit or withdrawal: withdrawal
Enter amount: 500
Final balance: 500

Example 2:

Deposit or withdrawal: withdrawal
Enter amount: 1500
You cannot have a negative balance!

Example 3:

Deposit or withdrawal: deposit
Enter amount: 500
Final balance: 1500

Answers

Answer: See below

Explanation:

Description: In this program, read-option from the user and based on that, perform the operation. And display the balance if the balance is negative.

transactions.py

balance = 1000

#read options from the user

option = input("Deposit or withdrawal: ")

amount = 0

#check if option is a withdrawal

if option == 'withdrawal':

amount = int(input("Enter an amount: "))

balance = balance - amount

#check option is deposit

elif option == 'deposit':

amount = int(input("Enter an amount: "))

balance = balance + amount

else:

print("Invalid transaction.")

#check balance is less than 0 (negative)

if balance < 0:

print("You cannot have a negative balance!")

else:

print("Final balance:",balance)

William would like to use full-disk encryption on his laptop. He is worried about slow performance, though, so he has requested that the laptop have an onboard hardware-based cryptographic processor. Based on this requirement, what should William ensure the laptop contains

Answers

There are different kinds of applications. William should ensure that the laptop contains TPM.

What is the TPM as seen in a computer?

This is known to be Trusted Platform Module and called TPM for short. It is a  technology that has been set up to aid or give a kind of hardware-based and also security linked services.

Note that A TPM chip is said to be often be a kind of secure crypto-processor and as such it will be the best for William's laptop.

See full question below

Question 33:William would like to use full-disk encryption on his laptop. He is worried about slow performance, though, so he has requested that the laptop have an onboard hardware-based cryptographic processor. Based on this requirement, what should William ensure the laptop contains? a) AESb) FDEc) PAMd) TPM

Learn more about laptop from

https://brainly.com/question/26021194

A(n) __________ is a common list operation used in programming. Its purpose is to iterate through a list of items, one item at a time, and check each one to see if it has exactly what we are looking for.

Answers

Linear search

You implement this algorithm by iterating over each item, and checking if the item matches what you are searching for.

It is linear because it takes a linear amount of time to search for an item.

Bits of information are combined into meaningful units so that more information can be held in short-term memory through the process of _________.

Answers

Bits of information are combined into meaningful units so that more information can be held in short-term memory through the process of chunking.

How would you create a loop that never ends?

a
Use the "repeat" block

b
Use the "infinite" block

c
Use the "repeat until" block

d
Use the "forever" block

Answers

Answer:

the answer is d use the forever block

Explanation:

I took the test and I got it right but sometimes it is different for others

What device turns digital data into an analog signal for sending it over the telephone line, and then turns it back into digital data when it reaches the other end of the connection

Answers

Answer:

The correct answer is D.

Explanation:

In electronics, a digital-to-analog converter (DAC, D/A, D–A, D2A, or D-to-A) is a function that converts digital data (usually binary) into an analog signal (current, voltage, or electric charge). An analog-to-digital converter (ADC) performs the reverse function.

Using the Red/Yellow/Green method, what
does YELLOW signify?

Answers

Answer:

go slow, or take caution

Explanation:

reason for me saying this is because that's usually what its for

Which term refers to pretending to be a computer to work through lines of programming code?code blockingimportingdesk checkingsyntaxing

Answers

The computer programming that enables it to work with the line of programming code has been checking syntaxing.

What is computer programming?

The computer programming is given as the codes in the computer language for the operation of the task or the software program.

The line of programming for the code that enables the computer programming is checking syntaxing Thus, option C is correct.

Learn more about computer programming, here:

https://brainly.com/question/3397678

#SPJ1

Answer pls pls pls pls pls ​

Answers

Answer:

identify materials to create a prototype

Being technologically literate requires being able to ______. a. use advanced graphics manipulation tools (adobe photoshop) b. use the most common operating systems (windows and apple os) c. adjust network settings for a company lan d. none of the above please select the best answer from the choices provided a b c d

Answers

Being technologically literate requires being able to use the most common operating systems (windows and apple). That is option B.

What are operating systems?

The operating systems are important software of a computer system which manages the computer's memory and other application software.

Examples of common operating systems include:

Apple operating system and

windows operating system

These operating systems are regularly updated by the technological companies that produced them. Therefore, being technologically literate requires being able to use the most common operating systems.

Learn more about  Operating System here:

https://brainly.com/question/22811693

Typically, hybrid drives use SSD to store the operating system and applications and hard disks to store videos, music, and documents.

A. True

B. False

Answers

Answer:

False

Explanation:

SSD's aren't as reliable as traditional hard disks, therefore, if the operating system is installed on the SSD and is stops working, the whole computer is broken.

Eli has 7 games on his phone. His sister has 6 more than him. Which ratio compares the number of games on Eli’s phone to the number of games on his sister’s phone?
6:13
7:13
6:7
7:6

Answers

Answer:

7:13

Explanation:

First figure out how many his sister has so 6+7=13 so the ratio is 7:13 because of how its worded since it says Eli's games first then thats how you get 7 then his sisters 13 so final answer 7:13 There is you answer

Answer:

The answer would be 7:13.

Explanation:

Eli has seven games and his sister has 6 more than him, meaning 13. This in ratio form would be 7:13. Hope this helps! :)

Please help with this question in java.
Computers .​

Answers

Here is the program~

/*Pattern.Java.*/

import java.util.*;

public class Pattern_Prog

{

public static void main (String args[ ])

{

Scanner input = new Scanner(System.in);

int length;

System.out.print("Enter a word : ");

String word = input.next( );

length = word. length( );

for(int i = 0; i<= length; i++)

{

for(int j = 0; j<i; j++)

{

System.out.print(" ");

}

System.out.println(word.substring(0,length-i));

}

input.close( );

}

}

Hope it helps you!!

Lab 8-1: Working with Boot Loader and Runlevels what is the root password

Answers

The root account on a Linux or Unix Operating System is the account with the most advanced privileges. The password to this account is called the "Root Password"

What is a bootloader?

The first thing that happens when the computer is powered on is that very important software is triggered. It is this software that helps the operating system (OS) to boot or load. This piece of software is called the bootloader.

By default, Unix OS does not have a root password. This must be set by the user. However, if this has been set and was lost, it may be reset using the following steps:

Boot to Recovery ModeDrop out to Root SheetRemount the File System with Write Permissionshere, type exactly the following command: mount -o rw,remount /Press "Enter" At this point, you should be able to make changes to the data on the hard drive. Next, enter passwd usernameretype the password and user name to confirm, thentype shutdown -r to restart the system.

Learn more about root passwords at:

https://brainly.com/question/26617114

it's 'p' at sign 'ssw0rd

the administrator in an Exchange Server needs to send digitally signed and encrypted messages. What should the administrator use

Answers

In the above scenario of Exchange Server, the administrator should use S/MIME.

What is S mime tells?

S/MIME is a short form of the word Secure/Multipurpose internet Mail Extensions. This is known to be a famous and well used protocol that is often employed in transferring or sending digitally signed and encrypted messages.

Note that the S/MIME is often used in Exchange Online as it helps to give a lot of services for email messages such as Encryption.

Learn more about Server from

https://brainly.com/question/17062016

HeLp PleASeeee
Lyla is using a computer repair simulator. This program can help her

determine the best brand of computer
find the fastest processor
identify the best operating system
learn the different types of hardware

Answers

Answer:   A

Explanation:   Determine the best brand of computer find the fastest processor

How to recover yahoo password without phone number and alternate email?.

Answers

You call support and if they can’t help then ur doomed

An information system’s _________ is the likelihood that the system or resource will be compromised by a ________ that will result in its ________ to further attacks.

Answers

Answer:

vulnerability      hack/unauthorized access    liklihood/predisposition

Explanation:

What is your most valued item you have in your house or apartment?

Answers

Answer:

my book collection and nintendo

Explanation:

Other Questions
Buyer Beware Toy Company is unsure of whether to sell its product assembled or unassembled. The unit cost of the unassembled product is $30 and Buyer Beware Toy would sell it currently for $65. The cost to assemble the product is estimated at $21 per unit and the company believes the market would support a new price of $85 on the assembled unit. What decision should be made about whether to sell or process further?A)Sell before assembly, the company will be better off by $1 per unit.B)Sell before assembly, the company will be better off by $20 per unit.C)Process further, the company will be better off by $29 per unit.D)Process further, the company will be better off by $14 per unit. a rectangle with a length of 28 and perimeter of 64 what is the width and what is the area Which expression represents the volume, in cubic units, of the frustum? one-third(7.52)(11) one-third(3.52)(8) one-third(7.52)(11) one-third(3.52)(8) one-third(7.52)(19) one-third(3.52)(8) one-third(7.52)(19) one-third(3.52)(8) What role does the government play in the economys circular flow ? Which is an equation of the line that passes through the points (5,2) and (10,-3)?A. y = x - 3B. y = x - 8C. y = -x + 7D. y = -x + 12 Let R be the region enclosed by f(x) = x + 4, g(x) = (x - 5) and the axes x = 0 and y = 0. Compute the volume Vobtained by rotating R about the x-axis.Hint: Express V as a sum of two integrals. . Find the equation of the line that goes through the point (-2, -2) and has a slope of -4.y = -2x - 4y = -4x - 2y = -2x - 2y = -4x - 10 Consult a current dictionary or other reference book and write a brief definition of technology. Sandra is setting up a party. She has 7 bowls to putcandy in. If she wants to put 1/5 of a bag of candy ineach bowl, how many bags of candy will she use? In "The Adventure of the Blue Carbuncle," when James Ryder tells Sherlock Holmes his real name, Holmes mentions that Ryder is the head attendant at the Metropolitan Hotel. What is one implication of Holmes saying this in the story?a. It suggests that Holmes learned who worked at the hotel at some point before this because he suspects that a hotel employee was involved with the crime.b. It frightens Ryder greatly, leaving him no choice but to go with Holmes and Watson back to Holmes's house in the hopes of retrieving the stolen jewel.c. It indicates that Holmes has already figured out how and why Ryder chose to hide the stolen jewel in one of the geese raised by his sister.d. It makes Holmes's decide to let Ryder go free rather than have him arrested, since Ryder promises not to commit any further crimes. Adderall should not be mixed with what? Candace made donuts and could package 11 of them in each box if she needs 3908 donut how many full boxes would she have? Please help me with this trigonometry question. Brainliest available. The interquartile range is the length that contains the middle ___ (what?) of the values in a data set I need help please someone help me :(Btw the bottom on has the same graph I just need a answer How do living organisms affect different parts of the biosphere? The introduction of the nickname "Torrance Tornado" adds to the development of Louie Zamperini's character mainly by Glamor is a cosmetics company that uses a television program to explain the benefits of the company's unique skincare products developed over several years by a Beverly Hills dermatologist. The program shows a step-by-step process of daily skincare activities designed to improve a person's skin tone, wrinkles, and skin discoloration. This television _______ is a 30-minute or longer advertisement, which is relatively inexpensive to produce and air A speaker can generate ____________ by personalizing his or her speech, using clear language, using volunteers, and having a question-and-answer period. Group of answer choices Balance the nuclear equation by giving the mass number, atomic number, and element symbol for the missing species.