We have been given that Grant spent $2.50, $4.00, $4.25, and $3.25 on breakfast in one week. The next week he spent $6 more in total for the 4 breakfasts than the week before. We are asked to find increase in the mean of second week.
Since Grant spent $6 more than last week, we will divide 6 by 4 to get how much mean of second week breakfast expenditures increased with respect to first week expenditures.
Therefore, mean of second week breakfast expenditure will be $1.5 more than first week.
Answer:
Step-by-step explanation:
I(x)=P(13x) = 2(13x)²+3(13x) +4
I(x)=P(13x).= 338x²+39x+4
The answer to your question is...
<h2>1 5/12 or 17/12</h2>
0.7 can also be written as 7/10. All you need to do is multiply 7/10 by 1/10. You will get 7/100 which is 0.07
Table for the question is attached in the picture below :
Answer:
SELECT distinct(TRUCK_ID), WEIGHT from SHIPMENT where WEIGHT < 800 ;
Step-by-step explanation:
The Structured query language (SQL) defined above, returns only the TRUCK_ID and Weight column from the shipment table as they are the only two columns listed after the select keyword. The condition is added using the WHERE keyword on the weight table, this filters the result returned to include only rows where the weight value is less than 800. The distinct keyword used alongside the TRUCK_ID column ensures that a certian TRUCK_ID value isn't returned more than once (Hence, it is used to avoid duplicates).