1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
FinnZ [79.3K]
3 years ago
10

You buy a new workstation that features an embedded RAID controller on the motherboard. You want to setup hardware RAID 10. How

many hard drives are required, without multiple partitions per disk, and where would you set this up? (Choose all that apply). Each choice provides half of the answer.
Computers and Technology
2 answers:
tester [92]3 years ago
7 0

Answer:

4 hard drives are required for RAID 10 and you would set this up in your operating systems (Windows, Linux, Mac) storage management.

balu736 [363]3 years ago
3 0

Answer:

4

BIOS

Explanation:

BIOS is short for Basic Input Output System. Its a built-in program a system utilize to power on after it is shut down. It also controls data flow between the operating system and other attached devices such as the hard drive, mouse etc. It is usually found on the motherboard of a system. BIOS manages the hard drives, it acts as an intermediary between the CPU and the I/O (input/output) devices.

You might be interested in
You have just read about a new security patch that has been made available for your Windows system, so you install the patch as
zhenek [66]

Answer:

A

Explanation:

The best action to take is to download and install the last good update; in that case, it will override the recent unstable update.

An update is not like a single program that can be add or remove from the control panel.

6 0
3 years ago
You have been hired to upgrade a network of 50 computers currently connected to 10 mbps hubs. this long-overdue upgrade is neces
Nonamiya [84]

It is suggested to use a wireless router and switches for the network. As there are only 50 computers, you can opt for a router and two 24-port network switches. The server and one computer can be connected to the router directly.

The other computers can be connected to the switches.

* If you have a broadband connection, connect your cable modem to the router using the Ethernet cable.

Place these two network devices in the location which can be accessed easily because all the workstations have to be connected to this point with the network cable.

or

If you would like to connect to the network wirelessly, the router should be in a center point so that all the workstations get a strong signal.

* If you are using a wired connection, conect the network switch into the open Ethernet ports on back of the router. This will give you additional ports.

* Now, run ethernet cables from each workstaion to the switch. From there, connect you wireless network to make sure that you get an internet connection.

If it is wired conection, ensure that you set the IP address in each workstation with the server setting.To do so:

Click Start ->Run or hold Windows+R,

Type ncpa.cpl

Control Panel window would appear.  

Click Network and Sharing Center.

Click Change adapter settings.

Click on the connection and click Properties.

Click Internet Protocol Version 4(TCP/IPv4)Properties.

You can either select --Obtain IP address automatically(where IP addresses are automatically assigned for each workstation)and select

Obtain DNS server address automatically.

or  

Select Use the following IP address (In this case, the IP and DNS information is provided by the Internet Service provider).

This would setup a network.

Please check the manual provided with the router to configure the router.

It is also suggested to ensure that you setup security for your router.

The reason for using routers as the main device is because routers are the smartest. Routers perform two important tasks:

DHCP and NAT

DHCP-Dynamic Host Configuration Protocol is the way dynamic IP addresses are assigned.

NAT- Network Address Translation is the way router translates IP addresses of packets across the Internet or the local boundary.

When switches are considered, it can be managed or unmanaged switches.Switches provide a more structured network.An managed switch can be accessed onsite or remotely and can be programmed by the manager.16 port managed switches are available from CISCO and Dell. An unmanaged switch can be used for home or smaller networks where 24-port switches can be used.

Each system would be individually connected to the network switch in the network, so that even if a single system fails, there would be no breakdown in the network.

8 0
3 years ago
Create a class Car, which contains Three data members i.e. carName (of string type), ignition (of bool type), and currentSpeed (
prisoha [69]

Answer:

Here.

Explanation:

#include <iostream>

#include <string>

using namespace std;

//Create a class Car, which contains • Three data members i.e. carName (of string type), ignition (of bool type), and //currentSpeed (of integer type)

class Car

{

public:

string carName;

bool ignition;

int currentSpeed;

//A no-argument constructor to initialize all data members with default values

//default value of string is "",bool is false,int is 0

Car()

{

carName="";

ignition=false;

currentSpeed=0;

}

//A parameterized constructor to initialize all data members with user-defined values

Car(string name,bool i,int speed)

{

carName=name;

ignition=i;

currentSpeed=speed;

}

//Three setter functions to set values for all data members individually

// Three getter function to get value of all data members individually

void setCarName(string s)

{

carName=s;

}

void setIgnition(bool ig)

{

ignition=ig;

}

void setCurrentSpeed(int speed)

{

currentSpeed=speed;

}

string getCarName()

{

return carName;

}

bool getIgnition()

{

return ignition;

}

int getCurrentSpeed()

{

return currentSpeed;

}

//A member function setSpeed( ) // takes integer argument for setting speed

void setSpeed(int sp1)

{

currentSpeed=sp1;

}

};

//Derive a class named Convertible

class Convertible:public Car

{

//A data member top (of Boolean type)

public:

bool top;

public:

//A no-argument constructor to assign default value as “false” to top

Convertible()

{

top=false;

}

//A four argument constructor to assign values to all data-members i.e. carName, ignition,

//currentSpeed and top.

Convertible(string n,bool i,int s,bool t):Car(n,i,s)

{

carName=n;

ignition=i;

currentSpeed=s;

top=t;

}

// A setter to set the top data member up

void setTop(bool t)

{

top=t;

}

//A function named show() that displays all data member values of invoking object

void show()

{

cout<<"Car name is:"<<carName<<endl;

cout<<"Ignition is: "<<ignition<<endl;

cout<<"Current Speed is :"<<currentSpeed<<endl;

cout<<"Top is:"<<top<<endl;

}

};

//main function

int main()

{

//creating object for Convertible class

Convertible c1("Audi",true,100,true);

c1.show();

c1.setCarName("Benz");

c1.setIgnition(true);

c1.setCurrentSpeed(80);

c1.setTop(true);

c1.show();

cout<<"Car Name is: "<<c1.getCarName()<<endl;

cout<<"Ignition is:"<<c1.getIgnition()<<endl;

cout<<"Current Speed is:"<<c1.getCurrentSpeed()<<endl;

return 0;

}

5 0
3 years ago
Implement a class Balloon that models a spherical balloon that is being filled with air. The constructor constructs an empty bal
amm1812

Answer:

Here is the Balloon class:

public class Balloon {  //class name

private double volume;  //private member variable of type double of class Balloon to store the volume

 

public Balloon()  {  //constructor of Balloon

 volume = 0;  }  //constructs an empty balloon by setting value of volume to 0 initially

 

void addAir(double amount)  {  //method addAir that takes double type variable amount as parameter and adds given amount of air

 volume = volume + amount;  }  //adds amount to volume

 

double getVolume()  {  //accessor method to get volume

 return volume;  }  //returns the current volume

 

double getSurfaceArea()  {  //accessor method to get current surface area

 return volume * 3 / this.getRadius();  }  //computes and returns the surface area

 

double getRadius()  {  //accessor method to get the current radius

 return Math.pow(volume / ((4 * Math.PI) / 3), 1.0/3);   }  } //formula to compute the radius

Explanation:

Here is the BalloonTester class

public class BalloonTester {  //class name

  public static void main(String[] args)    { //start of main method

      Balloon balloon = new Balloon();  //creates an object of Balloon class

      balloon.addAir(100);  //calls addAir method using object balloon and passes value of 100 to it

      System.out.println("Volume "+balloon.getVolume());  //displays the value of volume by getting value of volume by calling getVolume method using the balloon object

      System.out.println("Surface area "+balloon.getSurfaceArea());  //displays the surface area by calling getSurfaceArea method using the balloon object

             System.out.println("Radius "+balloon.getRadius());   //displays the value of radius by calling getRadius method using the balloon object

     balloon.addAir(100);  //adds another 100 cm3 of air using addAir method

       System.out.println("Volume "+balloon.getVolume());  //displays the value of volume by getting value of volume by calling getVolume method using the balloon object

      System.out.println("Surface area "+balloon.getSurfaceArea());  //displays the surface area by calling getSurfaceArea method using the balloon object

             System.out.println("Radius "+balloon.getRadius());    }  }  //displays the value of radius by calling getRadius method using the balloon object

//The screenshot of the output is attached.

6 0
3 years ago
In a style sheet, what must you use to separate multiple declarations for one selector within a rule?
ExtremeBDS [4]
You must use a semicolon (;)
4 0
3 years ago
Other questions:
  • Write a program that reads a number and prints all of its binary digits: print the remainder number % 2, then replace the number
    15·1 answer
  • Which of these should most likely be included in a wire frame ?
    12·1 answer
  • How can a user view the options for Junk E-mail?
    11·2 answers
  • Successful Web sites such as StumbleUpon ( www.stumbleupon) and Digg ( www.digg) use ____ by inviting their visitors to vote on
    8·1 answer
  • True or False. A modern programming EXE provides a text editor, a file manager, a compiler, a linker and loader, and tools for d
    9·1 answer
  • In the Mouse Properties window, you can?
    8·1 answer
  • A given application written in Java runs 15 seconds on a desktop processor. A new Java compiler is released that requires only 0
    9·1 answer
  • What is the decrypted binary
    9·1 answer
  • Write an inheritance hierarchy for classes Quadrilateral, Trapezoid, Parallelogram, Rectangle and Square. Use Quadrilateral as t
    14·1 answer
  • One of the many roles of the security compliance committee is to focus on controls that are widely used across a large populatio
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!