Answer: Decision support system (DSS)
Explanation:
Decision support system is the process in which the information model basically support the managers in the process of the decision making.
It is an information system and produces various reports and also interprets the data and information so that it help to make decisions.
The decision support system (DSS) is basically carried out by the management by reviewing all kinds of the report and then generate necessary data or information.
On the other hand, all the other options are incorrect as they are not related to the decision making process. Therefore, DSS is the correct option.
Developing in the cloud enables users to get their applications to market quickly. Hardware failures do not result in data loss because of networked backups. Cloud computing uses remote resources, saving organizations the cost of servers and other equipment.
The service that works in conjunction with EC2 Autoscaling in order to provide predictive scaling based on daily and weekly trends is target tracking.
<h3>How can I employ Predictive Scaling with target tracking? </h3>
Predictive Scaling works is known to be one that works in line with target tracking. They both help to make one's EC2 capacity to change more better to one's incoming application traffic.
Note that target tracking scaling policies is one where a user has to select a scaling metric and set a target value.
Learn more about Autoscaling from
brainly.com/question/17661222
Answer:
The following code is in C++.
#include <iostream>
using namespace std;
int main() {
int a[10],sum=0;//declaring an array and initialized variable sum with value 0.
cout<<"Enter the numbers"<<endl;
for(int i=0;i<10;i++)
{
cin>>a[i]; //taking input of 10 integers.
}
for(int i=0;i<10;i++)
{
sum=sum+a[i];//finding the sum..
}
cout<<"The sum is : "<<sum<<endl<<"The numbers entered are "<<endl;
for(int i=0;i<10;i++)
{
cout<<a[i]<<" ";//displaying the elements.
}
return 0;
}
Output:-
Enter the numbers
1 2 3 4 5 6 7 8 9 10
The sum is : 55
The numbers entered are
1 2 3 4 5 6 7 8 9 10
Explanation:
I have taken an array of size 10 so that no more than 10 integers could fit in it.After that taking the input from the user prompting 10 integers using the for loop.After that finding the sum.Then printing the sum and the numbers entered.
The question is broad and vague, but I would say hardware.