Answer:
d. None of the mentioned
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
Cloud computing comprises of three (3) service models and these are;
1. Platform as a Service (PaaS).
2. Infrastructure as a Service (IaaS).
3. Software as a Service (SaaS).
All of the following statements are true and correct because they are standard internet protocols;
I. Virtual appliances are becoming a very important standard cloud computing deployment object. This depicts the Platform as a Service (PaaS).
II. Cloud computing requires some standard protocols.
III. Cloud computing relies on a set of protocols needed to manage interprocess communications.
Answer:
b) f2.i is 1 f2.s is 2
Explanation:
i is an instance variable and s is static, shared by all objects of the Foo class.
Answer:
see explaination
Explanation:
#include <iostream>
using namespace std;
void display (string* name, double* purchase, int n)
{
cout<<"Name Purchase"<<endl;
cout<<"------------------------"<<endl<<endl;
for(int i=0;i<n;i++)
{
cout<<name[i]<<" "<<purchase[i]<<endl;
}
}
double calculate(double* purchase,int n)
{
double avg, sum=0;
for(int i=0;i<n;i++)
{
sum=sum+purchase[i];
}
avg=sum/n;
return avg;
}
int main()
{
int n;
cout<<"How many customer will you enter? "<<endl;
cin>>n;
string *name=new string[n];
double *purchase=new double[n];
for(int i=0;i<n;i++)
{
cout<<"Enter the customer"<<i+1<<"'s name: "<<endl;
cin>>name[i];
cout<<"Enter that customer's purchase: "<<endl;
cin>>purchase[i];
}
display(name, purchase,n);
double avg=calculate(purchase,n);
cout<<"Average purchase: "<<avg<<endl;
}
See attachment for the screenshot
Answer: create a custom template
Explanation:
Since Sarah is having a hard time finding a template for her advertising business that she may be able to use at a later date and also make it available to her colleagues, her best option will be to create a custom template.
Creating a custom template will ensure that she makes the template based on her requirements and can tailor it specifically to her needs which then makes it unique.
No. Communication not always formal.