Answer:
Option D.
Use CMAK to create an executable to install.
Explanation:
The CMAK is the Connection Manager Administration Kit it is a feature in Microsoft Windows that allows users to customize the remote connection experience for users on their network.
The CMAK can be simply used by the technical expert to remotely operate the client computer, and customize the VPN himself without the non-technical user having to do anything. This can be done for computers only on a network however.
Answer:
CAD ( d )
Explanation:
Richard should use CAD to create a cloud-based system, since he wants it to be a centralized repository of log files to be taken from the different servers associated with the organization
CAD ; Computer aided design software is the best software to be used because files created using CAD can be easily stored in cloud and it is easily accessible.
Answer:
# include <iostream>
using namespace::std;
int main()
{ int hrs;
float hrly_rate= 47;
double net_Sl;
float t1;
float t2;
float t3;
float t4;
float t5;
double grss_Pay;
float bons;
cout<<"Enter number of hours worked";
cin>>hrs;
net_Sl= 47 * 387;
t1 = (4.7 * net_Sl)/100;
t2= 87;
t3=(3.7 * net_Sl)/100;
t4=3;
t5=(0.47 * net_Sl)/100;
grss_Pay= net_Sl- t1 - t2 -t3 - t4 - t5;
float tmp=grss_Pay;
double in_hnd;
if (grss_Pay<10)
{
bons= (5 * grss_Pay)/100;
in_hnd=grss_Pay+bons;
grss_Pay=grss_Pay-grss_Pay;
}
else if (grss_Pay>10 ||grss_Pay<500)
{ bons= (10 * grss_Pay)/100;
tmp=grss_Pay-grss_Pay;
in_hnd=in_hnd+bons;
}
else if (grss_Pay>500|| grss_Pay<1000)
{ bons= 500;
grss_Pay=grss_Pay-grss_Pay;
in_hnd=in_hnd+bons;
}
else if (grss_Pay>1000 || grss_Pay<=2000)
{ bons= 600;
grss_Pay=grss_Pay-grss_Pay;
in_hnd=in_hnd+bons;
}
else if (grss_Pay>2000)
{ bons= (5 * grss_Pay)/100;
grss_Pay=grss_Pay-grss_Pay;
in_hnd=in_hnd+bons;
}
cout<<"Final Salary"<<in_hnd;
return 0;
}
Explanation:
Please check the answer section.