But where are the options?
Answer:
Retail Salespersons
Explanation:
The Bureau of Labor Statistics or the BLS in short is the federal unit or agency of the United States Labor Department. It is the main stats finding agency of the United States federal government in the field of statistics and labor economics.
According to a publication published by the Labor Statistics Bureau, the retail salesperson sector of occupation employed the most people in the U.S. in the year 2010. It provided employment to about 4.2 million people.
Answer:
0.4 gallons per second
Explanation:
A function shows the relationship between an independent variable and a dependent variable.
The independent variable (x values) are input variables i.e. they don't depend on other variables while the dependent variable (y values) are output variables i.e. they depend on other variables.
The rate of change or slope or constant of proportionality is the ratio of the dependent variable (y value) to the independent variable (x value).
Given that the garden hose fills a 2-gallon bucket in 5 seconds. The dependent variable = g = number of gallons, the independent variable = t = number of seconds.
Constant of proportionality = g / t = 2 / 5 = 0.4 gallons per second
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately
Fact
Explanation:
<em>If </em><em>wrong </em><em>Im </em><em>sorry </em><em>Correct </em><em>me </em><em>In </em><em>The</em><em> </em><em>c</em><em>om</em><em>m</em><em>ent </em><em>please </em>