Answer:
A battery changes chemical energy to <u>electrical</u> energy
A drum changes mechanical energy to <u>sound</u> energy
Explanation:
A battery is a device that stores chemical energy and converts it to electrical energy.
Beating a drum represents a mechanical to sound energy conversion.
Answer:
total weight of aggregate = 5627528 lbs = 2814 tons
Explanation:
we get here volume of space to be filled with aggregate that is
volume = 2000 × 48 × 0.5
volume = 48000 ft³
now filling space with aggregate of the density that is
density = 0.95 × 119.7
density = 113.72 lb/ft³
and dry weight of this aggregate is
dry weight = 48000 × 113.72
dry weight = 5458320 lbs
we consider here percent moisture is by weigh
so weight of moisture in aggregate will be
weight of moisture = 0.031 × 5458320
weight of moisture = 169208 lbs
so here total weight of aggregate is
total weight of aggregate = 5458320 + 169208
total weight of aggregate = 5627528 lbs = 2814 tons
Answer:
Depending on the size of the shrubs and the tress, will give you a general idea on how long they take to grow. Unless there are small plants that take forever to grow and or large plants that grow quickly. Hope this helps....
Explanation:
Answer:
Code in MATLab is given as below:
Explanation:
grade = input('Enter the grades as elements of a vector ');
x1 = length(grade);
fprintf('There are %5.2f grades\n',x1);
x2 = mean(grade);
fprintf('The average grade is %5.2f \n',x2);
x3=std(grade);
fprintf('The standard deviation is %5.2f \n',x3);
x4 = median(grade);
fprintf('The median grade is %5.2f \n',x4);