Answer:
The correct answer is <em><u>B.) comparison and contrast</u></em>
Explanation:
just did the unit test review. you are welcome
Answer:It rearranges the files on a hard drive to get quicker access to them.
Answer:
// program in C++.
// headres
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// array
int temperatures[7];
// count variable
int count=0;
cout<<"Enter the temperature of all days:";
for(int a=0;a<7;a++)
{
// read temperature of 7 days
cin>>temperatures[a];
// find temperature is extreme or not
if(temperatures[a]<-10||temperatures[a]>25)
// count
count++;
}
// print count of extreme temperature
cout<<"number of days of extreme temperature:"<<count<<endl;
return 0;
}
Explanation:
Create an array of size 7 to store the temperature of all days of week.Read the temperature of each day.If the temperature is less than -10 or greater than 25 then increment the count.This will count the number of days of extreme temperature.Print the count.
Output:
Enter the temperature of all days:-20 12 18 30 32 -15 15
number of days of extreme temperature:4
The components of an ERP system architecture is made up of the hardware, software and the Data.
<h3>What is an ERP system?</h3>
Enterprise resource planning (ERP) is known to be a kind of software that firms often use to handle or manage day-to-day business works such as accounting and others.
Note that The components of an ERP system architecture is made up of the hardware, software and the Data.
Learn more about ERP system from
brainly.com/question/14635097
#SPJ12
C. Change management
Allison is preparing to modify a network access control list and add three firewall rules to her private cloud HR systems by following the Change management process.
What exactly is change management?
Change management is the process of developing and implementing effective change strategies in businesses and organizations.
Examining the reasons for change, implementing changes, and assisting people in adapting to these changes are all part of it. This could include reorganizing the workforce, implementing new technology, lowering costs, increasing profits, or a combination of these to achieve a specific goal.
To know more about Change management, visit: brainly.com/question/28096717
#SPJ4