The following table gives data for the distance traveled along truck routes and the corresponding time required to traverse each route. Use the data to compute the average speed required to drive each route. Find the route that has the highest average speed.
Route No
1
2
3
4
5
Distance (mi)
560
440
490
530
370
Time (hr.)
10.3
8.2
9.1
10.1
7.5
Use 4 commands to complete the task
Answers
Answered by
0
Answer:
I don't know this question
Step-by-step explanation:
Thank you
Answered by
0
Answer:
d=[560,440,490,530,370];
t=[10.3,8.2,9.1,10.2,7.5];
as=d.*t;
x=max(as);
disp(x)
USING MATLAB
Step-by-step explanation:
Similar questions