Answer:
What are the advantages of managing the cloud=(Englishish)What are the advantages of managing the cloud?
Lower IT Costs. Businesses requiring IT services save money using third-party providers vs bringing talent in-house. ...
Computing Resources. Heavy computation cycles need extensive hardware resources. ...
Accessibility. ...
Always Updated. ...
Scaling. ...
Backup/Recovery. ...
Integration. ...
Security.
In spanish..... (Costos de TI más bajos. Las empresas que requieren servicios de TI ahorran dinero utilizando proveedores externos en lugar de traer talento internamente. ...
Recursos informáticos. Los ciclos de computación intensos necesitan amplios recursos de hardware. ...
Accesibilidad. ...
Siempre actualizado. ...
Escalada. ...
Recuperación de respaldo. ...
Integración. ...
Seguridad.)
Explanation:
Answer:
# include<iostream>
#include<conio.h>
using namespace std;
main()
{
char choice;
cout<<"Enter your Choice"
cin>>choice;
switch (choice)
{
case 'y':
cout<<"Your request is being processed";
break;
case 'n':
cout<<"Thank you anyway for your consideration";
break;
case 'h':
cout<<"Sorry, no help is currently available";
default:
cout<<"Incorrect Choice";
break;
}
getch();
}
Explanation:
In this program, a character type variable named as choice is selected for the input. This choice variable can be y, n or h as per requirement of the program. Switch statement is chose for the selection of output statement with respect to its mentioned input. This program shows the output statement for above mentioned characters. In case of any other character the program returns Incorrect choice and ends.