Answer:
At a retirement party, a coworker described Terry as dedicated, hardworking, and dependable. He also said that Terry was a great leader, knew the computer system, and kept the company's finances in order
Same question idea but different values... I hope I helped you... Don't forget to put a heart mark
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);