the number of hours when a pc or server is unavailable for use due to a failure is called ____.

Answers

Answer 1

The number of hours when a PC or server is unavailable for use due to a failure is called downtime.

Downtime refers to the period during which a computer or server is not operational and cannot perform its intended functions. It occurs when there is a hardware or software failure, maintenance activities, or other issues that render the system inaccessible or non-functional. Downtime can have significant consequences, including loss of productivity, financial losses, and negative impacts on business operations. Minimizing downtime is a critical objective for organizations to ensure smooth and uninterrupted operations.

You can learn more about downtime at

https://brainly.com/question/30464079

#SPJ11


Related Questions

PLS HELP
1. You can tape a movie off Showtime.
a. if you use it for educational purposes.
b. only if you have written permission from the company.
c. so that it may be archived.
d. to use as an entertainment for your great students.

2. You may photocopy parts of the encyclopedia:
a. if it is for your use only.
b. only if your copy is of the subject you are researching.
c. if you don’t have a copy at home.
d. to pass out to all your students.

3. You may record a local symphony concert to share with your class:
a. as long as you don’t sell tickets to hear it.
b. as long as you use it at a listening center in your room.
c. if you relate it to your lessons.
d. you may not record a public performance of any kind.

4. You may make a copy of a computer program:
a. if you are giving it to a friend.
b. as long as you purchased it and are using it for a back-up copy.
c. as long as you downloaded it from the internet.
d. you may not copy software.

5. You may use any image from the Internet or clip art software:
a. if you know that no one will know.
b. if you save it as an “image” and give it a new name.
c. as long as it is confirmed to be “royalty free”.
d. you cannot copy any photograph, artwork, or image without permission.

Answers

Answer:

1. so that it may be archived

2.to pass out to all your students

3.if you relate it to your lessons

4.as long as you've purchased it and you are using it for back up copy

5.C

Which actions changed the look of the following word?

A. The Spelling & Grammar function marked the word as an error.
B. The style of the word was set to underline.
C. The user changed the font size.
D. The word was set in italics, and then underlined.

Answers

Answer:

D

Explanation:

The actions applied to change the look of the word are:

1. It was set to italics. This can be done easily by highlighting the word => press Ctrl + I together on the keyboard.

2. Next is to set to underline. While still highlighted => press Ctrl + U together in the keyboard.

Answer:

D

Explanation:

Please help!!
The following are two different images that are encoded using the same algorithm. The images are each in a 5 by 5 grid of pixels where each pixel is black, white, red, green or blue.

The image on the left gets encoded and compressed down to 21 digits while the image on the right gets compressed down to 25 digits. Although the same algorithm was used to encode and compress these images, why are the end results a different length?


The algorithm was probably used improperly in the image on the right, causing it to be a longer length than it should have been.

Because this is a lossy compression, sometimes information is lost during the compression.

The amount of size reduction from compression depends on the amount of redundancy in the original data.

The image on the right uses more colored squares and therefore requires more digits to represent the pixels.

Answers

Answer: The amount of size reduction from compression depends on the amount of redundancy in the original data.

The reason why the end results have a different length is because: C. The amount of size reduction from compression depends on the amount of redundancy in the original data.

What is a lossy compression?

A lossy compression is also referred to as irreversible compression and it can be defined as a type of data encoding (data compression algorithm) in which the data in a file such as an image, is removed by using inexact approximations, in order to reduce the amount of size of a file after decompression.

Since the same algorithm was used to encode and compress these images, the reason why the resulting images have a different length is simply because the amount of size reduction from compression depends on the amount of redundancy in the original image file (data).

Read more on lossy compression here: https://brainly.com/question/17542014

characteristics of the printer​

Answers

Important printer characteristics include resolution, speed, color, and cache memory.

Explain• Explain the Inputs and tools and techniques for determine budget with an example of London eye project and burj khalifa

Answers

Answer:

Cost baseline

Project funding requirements

Project resources

Updated project documents

Explanation:

London Eye project and Burj Khalifa are two of finest projects that have been successful in the world. The main reason for their success was well defined planning and accurate budgeting. The input and tools for budgeting are formulation of resource requirements. These resources are financial and human capital which is required to complete the project. The project resources allocation is a major point of concern. Inappropriately allocated resources progress towards failure of project.

HELLLP PLEASEEEEEEEEE

Answers

Answer:

torque

a twisting or turning force.

Hope it will help :)

Reading a news release about a product is an example of
research.

Answers

Answer:

Yes, it is true, because it informs you

Explanation:

Larry has created a web page using HTML 4.01. He hasn’t included the declaration in the file. When he opens the page in a browser, Larry sees a page load error. Why does Larry need to use the declaration in an HTML file?
A.
to define the HTML version in which the page is written
B.
to define the web language in which the page is written
C.
to tell the browser what the content is
D.
to check whether the code is error-free

Answers

Answer:

To define the html version in which the page is written.

PLS HELP ILL GIVE BRAINLY) enter the answer) desktop publishing software enables users to create products for print or __________ distribution

Answers

Answer:

Electronic

Explanation:


1. Light of wavelength 900x10-9 m is emitted by a source. What is its frequency?​

Answers

therefore the frequency = 6×10^14

The frequency of the light is "[tex]6\times 10^{14}[/tex]".

Given values:

Wavelength,

[tex]\lambda = 900\times 10^{-9} \ m[/tex]

As we know the formula,

→ [tex]Frequency = \frac{C}{\lambda}[/tex]

By substituting the values, we get

→                   [tex]= \frac{3\times 10^8}{900\times 10^{-9}}[/tex]

→                   [tex]= \frac{10^8}{300\times 10^{-9}}[/tex]

→                   [tex]= 6\times 10^{14}[/tex]

Thus the above response is correct.  

Learn more about frequency here:

https://brainly.com/question/14459326

Which activity is performed during high-level design in the V-model?
A. gathering user requirements
B. understanding system design
C. understanding component interaction
D. evaluate individual components
E. design acceptance test cases

Answers

Answer:

B or E don't sure which one

What is the result of the following code fragment?
BigInteger a = new BigInteger ("10");
BigInteger b = new BigInteger ("25");
a.multiply(b);
a.add(b);
System.out.println(a);


A. 10
B. 35
C. 250
D. 275

Answers

Answer:

D

Explanation:

I don't know the language, but it is clear what is going on.

It looks like you are defining a value for a in both commands.

a.multiply(b); looks like you take the value in a (which is 10) multiply it by 25 and put the result back in a. So so far we have 10 * 25 = 250

Note the next command

a.add(b)

looks like you take the current value in a(which is now 250)

and put the value of b (which has not been changed. It is still 25) and put that in a (which is 250).

The result is 250 + 25 = 275

The answer is D. Since I only understand the logic, if this answer is wrong, I wish you'd leave a note.

Whats the difference between Input and Output? Give and example of an example on a M:B​

Answers

Answer:

Entrar en algún lugar no es como irse de algún lugar, o qué tipo de pregunta significa para mi acción

How computer networking improve communication. ​

Answers

Answer:

Explanation:

How do computer networks communicate?

Networking computers can also help you improve communication, so that:

staff, suppliers and customers can share information and get in touch more easily.

your business can become more efficient - eg networked access to a common database can avoid the same data being keyed multiple times, saving time and preventing errors.

Which language gives instructions on how text should appear on a web page?
__Blank__ language gives instruction on how text should appear on a web page.

Answers

Answer:

HTML

HTML stands for HyperText Markup Language, so HTML gives you a way to “mark up” your text with tags that tell the browser how your text is structured.

Answer:

Markup language

Explanation:

Do all careers or professions need computer science?

Answers

Answer:

no computer science is only needed for coders and engineers not for all is needed ok or one thing is that you study for your knowledge ok

Explanation:

hope it helps you

please mark me as brainlist

Pls help I’m not trying to fail this

Answers

Answer:

B makes the most sense to me

Explanation:

Write a statement to declare a variable x with data type int and initialise with the value 10​

Answers

Answer:

int x = 10;

Explanation:

This would work in many languages (C/C++/C#/Java).

Mediante el contacto de las ruedas dentadas un engranaje transmite un movimiento a. Rectilíneo b. Circular c. Ondulatorio

Answers

Answer:

La respuesta es b: circular

Explanation:

Las ruedas dentadas tienen dientes que rodean a todo el perímetro de la rueda , esto logra que las ruedas dentadas entren en contacto entre ellas sin causar fricción,el movimiento que realizan es circular.

Which letter shows the ball when it has the maximum kinetic energy

Answers

Answer:

D.

Explanation:

Kinetic energy can be defined as an energy possessed by an object or body due to its motion.

Mathematically, kinetic energy is given by the formula;

[tex] K.E = \frac{1}{2}MV^{2}[/tex]

Where;

K.E represents kinetic energy measured in Joules. M represents mass measured in kilograms. V represents velocity measured in metres per seconds square.

Generally, when the final velocity at which a physical object moves is equal to zero (0), then it possess maximum kinetic energy.

Hence, the letter which shows the ball when it has the maximum kinetic energy in the graph attached is D.

Why is computer literacy is important.

Answers

Cause it’s a important  skill process and they want there employees to have basic skill on pc or computers. They come depending on computers and it’s most likely to be more successful on education with the use of computers

How do “right to work” states impact workers? (Select all that apply.) They have strengthened unions. They have given unionized workers more protections. They have made it possible to fire workers for any reason or no reason, so long as they are not fired for federally prohibited reasons. They have increased dues-paying union membership by as much as two-thirds. They have banned union-security agreements.

Answers

Answer:

"Right-to-work" states impact workers through;

They have banned union-security agreements

Explanation:

"Right-to-work-laws" are state laws that ban union security agreements that allows the trade or labor union to demand employees of an establishment to join the trade or labor union including the obligation of the employer to collect union dues on the union's behalf to reduce the effect of the free-rider problem as the benefit of union negotiation benefits non-union members who are also employees

The "right-to-work laws" prohibits agreements between employers of labor and employees which are members of the unions from stipulating the requirement that the cost of union representation is to be payed for by the workers

the computer stores the data and information on the ______​

Answers

Answer:

Primary memory, it might be cpu but i think its primary memory

Explanation:

In a series circuit, resistance is?

Answers

Answer:

In a series circuit, the total resistance is equal to the sum of all resistances.

Explanation:

The same current passes through each resistor, so each resistor does its job as you would expect.

For Example:

a series circuit has a 2 Ω (ohm) resistor, a 5 Ω resistor, and a 7 Ω resistor. The total resistance of the circuit is 2 + 5 + 7 = 14 Ω.

Which of the following is an example of a prediction:

Answers

Answer:

You need to include the examples so we can answer :)

Explanation:

How many decimals should we keep in electrical calculations?

Answers

Answer:

2 I think

Explanation:

A loan of $12000 was borrowed from the bank at 14% per annum calculate the interest on the loan at the end of the first year ?​

Answers

Answer:

lmasjsjsjssjjssjjssjsjjsksakkalaaooaa

Loan borrowed = $12,000

Percentage of interest on the loan per annum = 14%

We know that :

[tex]\color{hotpink}\tt \: Simple \: interest = \color{plum}\frac{principal \times rate \times time}{100} [/tex]

In this case :

principal = $12000rate = 14%time = 1 year

Simple interest at the end of the first year :

[tex] = \tt \frac{12000 \times 14 \times 1}{100} [/tex]

[tex] = \tt \frac{168000}{100} [/tex]

[tex]\color{plum}\tt = \$1680[/tex]

Thus, interest = $1680

Therefore, total interest on the loan at the end of one year = $1680

Sam works in a real estate office. An offer comes in on a house but the homeowners are on vacation. He needs the homeowners to sign a document to accept the offer. What should Sam do?

Answers

Answer:

Sam should send a digital document and request a signature. The could be fax or even an image printed out, if neither is possible get in contact with eh owner and his lawyer for more help.

Explanation:

Answer:

Sam should call the homeowners’ cell phone to inform them of the offer and fax a copy of the document using the office fax machine. The homeowner should sign the document and fax it back. Sam may also conduct an Internet search to find the fax machine closest to the client.

Explanation:

got it right on edge

What is the best way to beat someone on starve.io? with a lava sword, or a pirate sword.

Answers

Answer:

Lava sword all the way

Explanation:

fo sho

What is Binary



A part of a computer


A base 2 number system


A computer program


Software for a computer

Answers

The answer to your question would be B. A base 2 number system.
Other Questions
The Freedom Riders. what impact this had on future laws? HI PLEASE HELPPPL I NEED THIS DUE VERY SOON9)What is the precipitate resulting from the double-replacement reaction BaCl2(aq) + 2NaOH(aq)?A. Ba(OH)2B. NaClC. BaNa2D. CI(OH) HELP HELP HELP We can think of 8 2 as the answer to the question How many groups of 2 are in 8? What is the answer to the question? * Which amendment do you feel is the most important and why? Make sure you describe which amendment, what it says, and why you believe it is the important. Tripp swims 50 laps a day inhopes of becoming a collegiateswimmer. Write an equation torepresent y, the total number oflaps Tripp has swam after xdays. What percentage of teens say they have witnessed cyberbullying?50957035 FORco, a country F corporation, wants to open a sales office in the United States. FORco does not form a U.S. subsidiary, but instead operates in the U.S. as a branch. Country F does not have a income tax treaty with the U.S. If FORco loans operating funds to the U.S. branch, when the U.S. branch makes interest payment to FORco, the interest payment will be subject to:____. HELP ME PLEASE !! Mao changes the incline angle on his treadmill from 0 to 5. If the walking surface of the treadmill is 5feet long, how many inches did Mao raise the end of the treadmill from the floor to the nearest tenth of an inch? Zechariah was a member of a family of:prophetspriestskingsservants quien es el narrador del cuento la rana autntica Please help will give brainliest. Which hand is negatively charged? cuales son los intereses del personaje que haba en el fragmento "De sobremesa" hiii please help ill give brainliest if you give a correct answer :) What were the most concerning social conflicts in Colonial America?Explain. escribe la forma correcta del verbo comenzar en el preterlto para completar la frase.yo___a estudiar este capitulo ayer.???? The following information is related to Nash Company for 2020. Retained earnings balance, January 1, 2020 $901,600 Sales Revenue 23,000,000 Cost of goods sold 14,720,000 Interest revenue 64,400 Selling and administrative expenses 4,324,000 Write-off of goodwill 754,400 Income taxes for 2020 1,144,480 Gain on the sale of investments 101,200 Loss due to flood damage 358,800 Loss on the disposition of the wholesale division (net of tax) 404,800 Loss on operations of the wholesale division (net of tax) 82,800 Dividends declared on common stock 230,000 Dividends declared on preferred stock 73,600 Prepare a multiple-step income statement. (Round earnings per share to 2 decimal places, e.g. 1.49.) 234235342421323254123+323546534311234 The branch manager of an outlet (Store 1) of a nationwidechain of pet supply stores wants to study characteristics of hercustomers. In particular, she decides to focus on two variables: theamount of money spent by customers and whether the customersown only one dog, only one cat, or more than one dog and/or cat.The results from a sample of 70 customers are as follows:Amount of money spent: X = +21.34, S = +9.22.Thirty-seven customers own only a dog.Twenty-six customers own only a cat.Seven customers own more than one dog and/or cat.Construct a 95% confidence interval estimate for thepopulation mean amount spent in the pet supply store.Construct a 90% confidence interval estimate for the population proportion of customers who own only a cat.The branch manager of another outlet (Store 2) wishes to conducta similar survey in his store. The manager does not have access tothe information generated by the manager of Store 1. Answer thefollowing questions:c. What sample size is needed to have 95% confidence ofestimating the population mean amount spent in this storeto within { +1.50 if the standard deviation is estimated tobe $10?d. How many customers need to be selected to have 90% confidence of estimating the population proportion of customers who own only a cat to within {0.045?e. Based on your answers to (c) and (d), how large a sample should the manager take? 1. The following statements are true about writing the summary of findings EXCEPT:a. It presents a general view of all the research findings.b. It is anchored on the order of the statement of the problem.c. It includes the views and interpretation of the researcher.d. It provides a direction to the discussion.