It took away jobs and made day to day tasks easier
Answer:
Hi!
Explanation:
Thank You So Much For The Points.
Thank you for this question. The answer is that an Ip adress stands fo Internet Protocol which acts like a home adress. Bascily it helps you find a node in a network as the IP adress is made of letters and numbers separated by a full stop. I hope you are happy
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
int main(){
int qty;
float discount = 0;
cout<<"Quantity: ";
cin>>qty;
int cost = qty * 100;
{
; }
cout<<"Cost: "<<cost - discount;
return 0;
}
Explanation:
This declares the quantity as integer
int qty;
This declares and initializes discount to 0
float discount = 0;
This prompts the user for quantity
cout<<"Quantity: ";
This gets input for quantity
cin>>qty;
This calculates the cost
int cost = qty * 100;
If cost is above 1000, a discount of 10% is calculated
{
; }
This prints the cost
cout<<"Cost: "<<cost - discount;
Answer:
Creating charts or graphs
Bringing data together
Storing Financial data
Explanation:
Excel is great at creating charts and graphs
Also good at compiling data
You wouldn't necessarily want to type an essay in excel, so not for writing an essay
You cannot schedule appointments through excel, although I guess if you really wanted to you could organize them in excel
Excel is fine for storing financial data, you can even manipulate it in the program
You cannot draw conclusions using excel directly, although you can organize data in such a way using excel that it makes it easy to identify trends and such for you to draw your conclusions