Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() {
//variable to store input
double price;
int totalNumber;
// variable to store total price
double total_price;
cout<<"Enter the price of an order:";
// read the price of an order
cin>>price;
cout<<"Enter the number of orders:";
// read the total number of orders
cin>>totalNumber;
// calculate total price of all orders
total_price=price*totalNumber;
cout<<"total price of all orders: "<<total_price<<endl;
return 0;
}
Explanation:
Declare three variables "price" of double type,"totalNumber" of int type And "total_price" of type double.Read the value of an order and number of orders. The calculate the total price by multiply "price" with "totalNumber" and assign it to variable "total_price". Print the total price.
Output:
Enter the price of an order:12.5
Enter the number of orders:3
total price of all orders: 37.5
PKI trust model that should be used, is a distributed trust model.
- A distributed trust is a trust model that gives power to different source while taking the power away from a single source and thereafter, shares that responsibility to the wide range of sources. It is important as it allows trust to flows through network, marketplaces and forums.
- With the use of this distributed trust model, Sigma Technology can have multiple CAs in different locations to work on behalf of the company. And even if one is absence, other CAs can still issue certificate without any hindrances.
Conclusively, we can say that PKI trust model that should be used is a distributed trust model.
Learn more from:
brainly.com/question/14837773
Answer:
Most careers or professions need computer science
Explanation:
As humanity is improving technological wise most jobs will be replaced and other jobs would come into play and in order for individuals to become employed in jobs that will be available in the future to come they will have to have a degree in computer science or know how to operate computers.
Well it determends if there wearing them for sports or for fighting
if it is for sports then they are protected from balls and such
if it is for fighting then they are protected from bullets arrows and anything else you could think of
they are used to shield your face
Answer:
I don't know if this is right output is {1,3}
Explanation: