In the case above step should the team take next in order to complete this project is to to plan their next prototype tests.
<h3>What are the steps in the design process?</h3>
The engineering design process is known to be made up of seven step and they are:
- Define the problem
- Ask
- Imagine
- Plan
- Prototype
- Test
- Improve
Note that In the case above step should the team take next in order to complete this project is to to plan their next prototype tests because they have gone a step backward.
Learn more about engineering design process from
brainly.com/question/17711844
#SPJ1
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{ // variable to store number of loads
int n;
cout<<"enter the number of servers:";
// read the number of servers
cin>>n;
// create an integer array of servers of size n
int server_load[n];
// read the load of each server
cout<<"enter the loads on each server:"<<endl;
for(int x=0;x<n;x++)
{
cin>>server_load[x];
}
// sort the array
sort(server_load,server_load+n);
int min_diff=MAX_INT;
// find the minimum absolute difference between the server load
for(int y=0;y<n-1;y++)
{
int d=server_load[y+1]- server_load[y];
if(d<min_diff)
min_diff=d;
}
// print the minimum difference
cout<<"minimum absolute difference of server load is: "<<min_diff<<endl;
return 0;
}
Explanation:
Read the number of servers from user and assign it to "n".Create an integer Array of size n to store the load on each server.Read the load of each server and store in the array. Sort the array. Then find the minimum difference between two load of servers. Print the minimum difference.
Output:
enter the number of servers:6
enter the loads on each server:
12 45 5 9 3 24
minimum absolute difference of server load is: 2
Answer:
Its B.change the user name.
Explanation:
hope it helps!
mark me brainliest :))
Answer:
RAID level 5 can be used to compensate a limited number of available disks.
Explanation:
There are two type of RAID
- Software RAID
- Hardware RAID
Software RAID
deliver services form the host.
Hardware RAID
provides hardware services.
RAID has levels
0, 1, 5, 6, and 10
RAID 0, 1, and 5 work on both HDD and SSD media,
4 and 6 also work on both media.
RAID 0 :Striping
In this level minimum of two disks,RAID 0 split the file strip the data.Multiple hard drive are used to split the data.
RAID 1 : Mirroring
In this level Minimum two disk require and provide data tendency.
RAID 5 :Stripping with parity
Parity is a binary data.RAID system calculate the value which system used to recover the data.
Most RAID system with parity function store parity blocks.
RAID 5 combines the performance of RAID 0 with redundancy of RAID 1.
RAID 5 level should minimize the fault tolerance.
Answer:
a. file-naming conventions
Explanation:
File names need to follow certain criteria and constraints. Examples include:
- File names must not start with special symbols.
- File names can consist of letters,digits and special characters such as _.
- File name can contain an extension after a dot sign.
- File names must not be duplicates of an existing file.
Such constraints form part of file-naming conventions.
- file-path represents the complete path to the file in the directory structure.
- disk partition segments a hard disk into multiple volumes.
- file-path starts from the root directory and spans one or more subdirectories to the location of the actual file.