Answer:
, 
Explanation:
The drag force is equal to:

Where
is the drag coefficient and
is the frontal area, respectively. The work loss due to drag forces is:

The reduction on amount of fuel is associated with the reduction in work loss:

Where
and
are the original and the reduced frontal areas, respectively.

The change is work loss in a year is:
![\Delta W = (0.3)\cdot \left(\frac{1}{2}\right)\cdot (1.20\,\frac{kg}{m^{3}})\cdot (27.778\,\frac{m}{s})^{2}\cdot [(1.85\,m)\cdot (1.75\,m) - (1.50\,m)\cdot (1.75\,m)]\cdot (25\times 10^{6}\,m)](https://tex.z-dn.net/?f=%5CDelta%20W%20%3D%20%280.3%29%5Ccdot%20%5Cleft%28%5Cfrac%7B1%7D%7B2%7D%5Cright%29%5Ccdot%20%281.20%5C%2C%5Cfrac%7Bkg%7D%7Bm%5E%7B3%7D%7D%29%5Ccdot%20%2827.778%5C%2C%5Cfrac%7Bm%7D%7Bs%7D%29%5E%7B2%7D%5Ccdot%20%5B%281.85%5C%2Cm%29%5Ccdot%20%281.75%5C%2Cm%29%20-%20%281.50%5C%2Cm%29%5Ccdot%20%281.75%5C%2Cm%29%5D%5Ccdot%20%2825%5Ctimes%2010%5E%7B6%7D%5C%2Cm%29)


The change in chemical energy from gasoline is:



The changes in gasoline consumption is:





Lastly, the money saved is:


Answer:
Tesla CEO Elon Musk tweeted that the company's stock was too high, and it immediately dropped in value. The tweet may have violated a deal Musk made with the SEC about his tweets and Tesla. Musk also tweeted patriotic lyrics, said his girlfriend Grimes is mad at him, and noted that their child is due on Monday
Answer:
Carpenter — A carpenter is someone who works with wood. They build houses and make cabinets etc.
Logging — Loggers are people who cut trees. They use strong chain saws to cut trees.
Shipwrights — Shipwrights build, design, and repair all sizes of boats.
Wood Machinist — Wood Machinists repair and cut timber or any kind of wood for construction projects. They also operate woodworking machines, as their name suggest.
Furniture finishers — Furniture finishers shape, decorate, and restore damaged and worn out furniture.
Answer: Engine power is the power that an engine can put out. It can be expressed in power units, most commonly kilowatt, pferdestärke (metric horsepower), or horsepower.
Explanation: (I hope this helped!! ^^)
Answer:
insert (array[] , value , currentsize , maxsize )
{
if maxsize <=currentsize
{
return -1
}
index = currentsize-1
while (i>=0 && array[index] > value)
{
array[index+1]=array[index]
i=i-1
}
array[i+1]=value
return 0
}
Explanation:
1: Check if array is already full, if it's full then no component may be inserted.
2: if array isn't full:
- Check parts of the array ranging from last position of range towards initial range and determine position of that initial range that is smaller than the worth to be inserted.
- Right shift every component of the array once ranging from last position up to the position larger than the position at that smaller range was known.
- assign new worth to the position that is next to the known position of initial smaller component.