You are planning a storage solution for a new Windows server. The server will be used for file and print services and as a database server. The new server has five hard disks, all with equal capacity. Your storage solution should meet the following requirements: System files should be on a volume separate from data files. All volumes should be protected so that the server can continue to run in the event of a failure of one of the disks. The data volume should be optimized for improved disk access times. You will use Windows Disk Management to create and manage the volumes. What should you do

Answers

Answer 1

Answer:

Explanation:

The best solution for this scenario would be to first create a mirrored volume for the system volume using two of the available disks and then a single RAID 5 volume with the remaining 3 disks for the data volume. This setup will allow all of the data to be backed up so that if one of the disks fails the server will continue running accordingly. The RAID 5 volume offers error checking and redundancy for the data, therefore, allowing the data to be accessed quickly and efficiently with far greater security and far less chance of data becoming corrupt.


Related Questions

Which line of code converts 3 to 3.0?

int(3)

type(3)

float(3)

single(3)

Answers

Answer:

float

Explanation:

I CANT DO SKIN MODS ON BRAWLHALLA RIGHT!!!! IM SO MADDDDDDDDDDD

Answers

I'm better then u in brawhlla

just need to know if these are correct

Answers

Answer:

Yes, they are correct.

Answer:yea g

Explanation:

what's wrong with this python code i don't know what's wrong with both of them

Answers

Answer:

Keep it in the format

first one:

def swapping_stars():

   line_str = ""

   for line in range(6, 8):

       for char in range(0, 6):

           if line % 2 == char % 2:

               line_str = line_str + "*"

           else:

               line_str = line_str + "-"

           print(str(line_str))

swapping_stars()

second one:

if you want it to go:

23456

def print_numbers(list):

   for i in range(1, len(list)):

       print(str(list[i]))

num_list = [1, 2, 3, 4, 5, 6]

print_numbers(num_list)

if you want it to go

123456

def print_numbers(list):

   doneONE = False

   for i in range(1, len(list)):

       if not doneONE:

           print(str(list[i] - 1))

           doneONE = True

       print(str(list[i]))

num_list = [1, 2, 3, 4, 5, 6]

print_numbers(num_list)

Explanation:

PLEASE HELPPPPP ASAP, 50 POINT'S + BRAINLIEST

1.) Online crimes causing loss of money: give 5 names and examples to each

2.) Online misconduct or crimes targeting medical offices and services: give 5 names and examples to each

3.) Online misconduct or crimes that you have experienced: give 5 names and examples to each

Answers

Answer:

1. Cybercrimes are online crimes that cause loss of money some examples are: Identity fraud, Cyber bribery, Debit/credit card fr/ud, and Email fr/ud.  

2. In medical offices devices linked to CT scans are able to be h/cked, there is r/nsomw/re that uses their devices. Since medic/l computers are always linked to the internet. it makes it easier for them to be h/cked. They make an employee click on an e-mail carrying m/lw/re, then the cybercrimin/ls encrypt p/tient data then dem/nd p/yment for its decryption.

3. This is a personal question but if you have ever been sc/mmed or witnessed someone being sc/mmed or almost got  sc/mmed it might apply to this question

Which list shows a correct order of mathematical operations that would be used by a spreadsheet formula?

Answers

Answer:

It stands for Parentheses, Exponents, Multiplication/Division, Addition/Subtraction.

You are working on a ticketing system. A ticket costs $10. The office is running a discount campaign: each group of 5 people is getting a discount, which is determined by the age of the youngest person in the group. You need to create a program that takes the ages of all 5 people as input and outputs the total price of the tickets. Sample input: 55 28 15 38 63 sample output: 42.5 the youngest age is 15, so the group gets a 15% discount from the total price, which is $50 - 15% = $42.5

Answers

Answer:

Explanation:

The following program is written in Java. It takes 5 inputs of int values for the ages of each member in the group. Then it loops through all of the ages and chooses the youngest age. Finally, it applies that age as a discount to the final price which would be $50, outputting the final discounted price. The output for the test case provided can be seen in the attached picture below in red.

import java.util.Scanner;

class Brainly

{

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       int[] person = new int[5];

       System.out.println("Enter age of individual 1: ");

       person[0] = in.nextInt();

       System.out.println("Enter age of individual 2: ");

       person[1] = in.nextInt();

       System.out.println("Enter age of individual 3: ");

       person[2] = in.nextInt();

       System.out.println("Enter age of individual 4: ");

       person[3] = in.nextInt();

       System.out.println("Enter age of individual 5: ");

       person[4] = in.nextInt();

       int youngest = person[0];

       for (int x = 0; x < person.length; x++) {

           if (person[x] < youngest) {

               youngest = person[x];

           }

       }

       double discount = 1 - (((double)youngest) / 100);

       double output = 50 * discount;

       System.out.println("Total Price: " + output + " the youngest is " + youngest);

   }

}

first calculating device​

Answers

Answer:

abacus is first calculating device

Fingers, people counted using fingers first.


What requirements are necessary in order for you to share a file?
Check all that apply.
You own it.
You commented on it.
You can edit.
You know about the topic of the document.

Answers

Answer:

I. You own it.

II. You can edit.

Explanation:

A file can be defined as a computer resource that avails end users the ability to store or record data as a single unit on a computer storage device.

Generally, all files are identified by a name and type such as audio, image, video, document, system, text, etc. Each type of files can be transferred or send from one computer node to another computer node through the use of a wired or wireless connection and with the necessary level of permission.

The requirements which are necessary in order for you to share a file are;

I. You must own the file. This simply means that you have the authority to share the file and have it saved on your device.

II. You have the permission or required credentials to edit the file. A read-only permission cannot be used to edit a file but a full permission can be used.

Lorann sends messages to Aiden that always go into Aiden’s Junk E-mail folder. Which process would best correct this problem so that Lorann’s messages no longer go into Aiden’s Junk E-mail folder?
A. adding Aiden to the Safe Senders list
B. adding Aiden to the Safe Recipients list
C. adding Lorann to the Safe Senders list
D. adding Lorann to the Safe Recipients list

Answers

C doing this for points

Answer:

b

Explanation:

What is the output of this program?

grades = [89, 70, 98, 100, 83]

print(grades[-4])

Group of answer choices

89

100

70

98

Answers

Answer:

70 is the answer negative one begins from 83 and count down to 89, Therefore, 70 is is -4 and is chosen as the best answer

Your program has a loop where a user guesses a letter.

Your program compares the guess to each letter in the word.

Finish the code.

for n in range(lenWord):
if _______ == letter:
blanks = blanks[:n] + letter + blanks[n+1:]


correct[n]


correct


correct(n)

Answers

Answer:

its correct[n]

Explanation:

for n in range(lenWord):

if correct[n] == letter:

blanks = blanks[:n] + letter + blanks[n+1:]

A loop in a computer program is an teaching that repeats until a specified condition is reached.

In a loop structure, the loop asks a question. If the answer needs action, it is executed. The same question is asked  again until no other action is required.

What are loops used for in programming?

A Loop is employed to repeat a specific block of code a over and over. There are two main types of loops, for loops and while loops.

What are the 3 types of loops in programming?

In Java, there are three kinds of loops which are – the for loop, the while loop, and the do-while loop. All these three loop constructs of Java executes a set of replicated statements as long as a specified condition stays true.

To learn more about A loop, refer

https://brainly.com/question/26568485

#SPJ2

When using the Photo Album dialog box, a picture

cannot be modified in this view.
cannot have text added.
can be inserted from a file or disk.
will be permanent when added to the box.

Answers

Answer:

can't have text added and will be permanent when added to the box

Imagine you are the human resource director for a small video game company that employs around 20 coders, managers, artists, etc. You're in charge of writing the safety rules and regulations for the company. Provide at least four discrete rules you would implement

Answers

Answer: maybe not put cheats no secret or easter eggs or hard challenges im not sure

Explanation:

The four discrete rules one  would implement can be

Provide no confidential company information to anyone who is not an employee of the company.Acknowledge sources obtained from other people's games or anything else with a copyright claim.Avoid abusing your power by cheating or abusing the games to benefit yourself or your associates.Maintain a positive workplace culture and show the utmost respect to everyone to increase productivity.

What is a  manager?

A manager refers to a person who is responsible head of any project and helps in arranging the resources, checking the progress, and timely completion of it in order to achieve the vision and goal of the organization.

Preventing workplace diseases and injuries, as well as the suffering and financial burden they can bring on employees, their families, and employers are the fundamental objective of safety and health initiatives.

Learn more about managers, here:

brainly.com/question/29023210

#SPJ5

subscribe to twomad or you are cringe for the rest of your life kid

Answers

Answer:

What if I don't want to?..........

In today's e - commerce world, 'Disintermediation' may only affect intermediaries who are not performing value added services to customers. Do you agree with this statement? Explain why?

Answers

Answer:

No

Explanation:

Although 'Disintermediation' does affect these intermediaries I believe it also affects those that 'are' providing valuable services. This is because many other factors come into play when deciding to reduce intermediaries. Sometimes when a company has various intermediaries, a single one can provide the same value as two, therefore, for the company, it is more valuable to reduce the number of intermediaries that they have and provide more resources to fewer intermediaries so that they perform better for less pay. This is one of a few reasons why it can affect any intermediary, not just the ones that do not provide value.

what is faster C++ or go lang

Answers

Answer:

C++

Explanation:

click on the _____button to move the selected text in the centre of the page (justify /centre)​

Answers

Answer:

centre

Explanation:

Kevin is scanning old images from his college library. He might use these scanned images in the college magazine. He might also use them on the college website. What is the best practice for Kevin to follow when scanning the images?
A.
scan the images with 72 DPI
B.
scan only the images that are ideal for a website
C.
scan the images with 150 DPI
D.
scan the images with 600 DPI
E.
scan the images that are ideal for a magazine

Answers

Answer: D. Scan the images with 600 DPI

Explanation:

Answer: D. Scan the images with 600 DPI

Explanation: Correct for Plato/Edmentum

Select the correct answer from each drop-down menu.
Complete the following sentences.

_________ effort is an important and necessary factor for the success of any project. In software development projects,
_______team members carry out several tasks to ensure the quality of the process and the final product.

Options for the first box are: managers, A teams, an individuals

Options for the second box are:internal, specific, external

Answers

Answer:

First, A teams, Second ,Specific

Explanation:

BRAINLIEST 14 points
The Great Firewall of China _____. Select 4 options.

blocks websites
filters all emails
filters social media
filters web searches
jams signals

Answers

Answer:

the first four options

Explanation:

they make the most sense

The Great Firewall of China is designed and developed to:

Block websites.Filter all emails.Filter social media.Filter web searches.

What is the Great Firewall of China?

The Great Firewall of China can be defined as a set of legislation and network security protocol that domestically monitors, regulates and controls inbound and outbound Internet traffic in the People's Republic of China, based on set aside security rules.

In this context, the Great Firewall of China is designed and developed to domestically:

Block websites.Filter all emails.Filter social media.Filter web searches.

Read more on Great Firewall of China here: https://brainly.com/question/27411286

#SPJ2

Examples of hardware that computes on a network can share are the operating system and the web browsers

Answers

Answer:

False.

Explanation:

The hardware component of a computer can be defined as the physical parts or peripherals that enables it to work properly. Some examples of hardware components are monitor, speaker, central processing unit, motherboard, hard-drive, joystick, mouse, keyboard, etc.

A software component of a computer comprises of software application or program that are used by the computer to manage or control software application, computer hardware and user processes. Some examples of software components are operating system, registry keys, antivirus, media player, word processor, etc.

In conclusion, the hardware components of a computer are the physical parts that can be seen and touched while the software components cannot be touched but rather are installed as a program.

Hence, examples of software but not hardware that computers on a network can share are the operating system and the web browsers

What is the check digit for the following original product number: 140501941 ? *

a)10
b)7
c)5
d)2

Answers

Explanation:

I think it is 7, but I could be wrong..... sorry

Stages of reverse engineering

Answers

Answer:

Capture Data, Refine the Model, and then Manufacture it.

Explanation:

Which of these is a discipline?

software manager

customer service specialist

help desk technician

software engineering

Answers

Answer:

Option D

Explanation:

Discipline here refers to any educational course in which a person studies.

software manager , customer service specialist  and help desk technician are basically the job designations and not discipline in which one can pursue study.

However, software engineering is a discipline as one can educate himself/herself in this discipline and become a software engineer.

Hence, option D is correct

She goes to look at her
HTML code to see what is wrong line by line until she can figure out what she
messed up. Which process is Ana using?

A. Fragmentation
B. Identification
C. Pinpoint
D. Debugging

Answers

Debugging is the answer

The process is Ana using is Debugging. Check below to see what the term is all about.

What is debugging used for?

Debugging is known to be the act of working on how a given program runs, and also how it creates data so as to be able to defects and know issues in a given code.

Note that since she goes to look at her HTML code to see what is wrong line by line until she can figure out what she messed up, she is engaged in debugging.

Learn more about Debugging from

https://brainly.com/question/163290

#SPJ2

In VPython, which line of code creates a ball five units away from the user from the center?

ballPosition = _______

myBall = sphere(pos = ballPosition)


vector(0, 0, -5)


vector(0, -5, 0)


vector(-5, 0, 0)

Answers

The line of code creates a ball five units away from the user from the cente is  ballPosition = vector(0, 0, -5)

What is python code?

In Python, there is found to be a generally used coding language such as HTML, etc.

Know that it is often used in programming and software creation and as such, having the ballPosition =  to be vector(0, 0, -5) myBall = sphere(pos = ballPosition) is the right thing to do.

Learn more about VPython from

https://brainly.com/question/26497128

#SPJ2

which feature of project management includes monetary compensation for the employees

Answers

Answer:

Extrinsic compensation

Explanation:

The feature of project management that includes monetary compensation for employees is the Extrinsic compensation.

Extrinsic compensation is reward ( tangible ) given to workers/employees by the management of a project for the speedy completion of a task or for the completion of a specific task . It can in the form of monetary compensation or non-monetary compensation.

example of Non-monetary compensation includes certificate of honor, medical insurance .

example of monetary compensation includes : work Bonuses , salaries

what is computer assisted translation​

Answers

Answer:

the use of software to assist a human translator in the translation process.

Explanation:

What is fish processing?

Answers

Fish processing involves preparing fish and seafood for delivery to consumers. Once fish is harvested, it must undergo several steps before it’s ready to be sold in the market. The process includes gutting, filleting and packaging of the product. Fish is a highly perishable food, so it must be carefully handled from the moment it’s caught until it’s sealed in packaging material
Other Questions
Mi novio y yo nosel verano pasado.conocimosconocamos hey! ill give brainliest please help! QUESTION 2.Trevor bought new sneakers originally listed for $64.99. They are 15% off. Which equation can be usedto find the amount Trevor will save?A. X= 1.15(64.99)B. x = 15(64.99)C. x = .85(64.99)D. x = .15(64.99) Can anyone help me with my homework A substance has a pH of 4. Is it an acid or a base? Tim earns $52.50 for 5 hours of dog walking. He earns the same amountper hour each time he dog walks. How many hours does Tim need to dogwalk to earn $168? find the coordinates of point p along the direct line segment ST so that SP to PT is 1 to 3. S= (-6,7) and T=(9,25) [tex] \sqrt[2]{a} {}^{2} [/tex] Factor 32x15 . If the expression cannot be factored, write cannot be factored. Help please someone please what is the answer Present Subjunctive - Adjective Clauses: Practice 1 Instrucciones Cada una de las oraciones contiene una clusula adjetival pero las oraciones no estn en el orden correcto. Cambia el orden de las palabras para que la oracin tenga sentido. /133 1. gerente busca sepa El a hablar que espaol. alguien 2. sea que mis sueldo pagar para suficiente un Necesito deudas. 3. alcanzables. sean fijar que deben estudiantes Los metas 4. accin. que Quiero pelcula ver una tenga mucha 5. dedicados. compaa empleados existe no que tenga No una exitosa 6. busca se una universidad que Juan en ciencias. especialice 7. No aos. menos haga que conozco a en de 2 la maestra nadie 8. buscan que que jefes tengan mejores empleados nuevos a Los empleados pasados. habilidades 9. Marta el que ahora. aun no ms quiere cargos trabajo cumplir un difciles que tiene que tenga de 10.en que tienes No mejor hay ahora. paguen trabajo que ciudad que el esta trabajos 11 octo algunas comestre fciles on matricularnos What do you notice about the narrative voice and viewpoint in the novel To Kill A Mockingbird? can someone help me with this question? Measure the volume of the gas in the syringe.Estimate it to the nearest 0.5 mL. mL30.5Intro32.537.540.0 Jen is planning a trip to France. The exchange rate is 3 Euros for $4. How many Euros will she get if she exchanged $28? DO NOT FORGET THE UNITS! What is the shape of the cross section of the triangular prism in each situation? Drag and drop the answer into the box to match each situation. What is the range of 39,41,5,43,26,7,43,24,41 The answer is the first or last option but I dont know which one Points A, B, C, and D are connected to form square ABCD. If square EFGH is similar to square ABCD, what are the coordinates of G? A) (4, 4) B) (4, 5) C) (5, 4) D) (5, 5) In most natural populations rapid exponential growth is unsustainable. As populationsincrease, environmental resistance causes the growth rate to slow down, until carryingcapacity is reached. Brainstorm several factors that could be considered as environmentalresistance.