Answer:
using MATLAB
%program to calculate the kinetic velocity of a body of mass
% kinetic energy is given by 1/2*(m*v^2)
%m= mass of body in kilogram
%v= velocity of body in m/s
prompt= 'mass of body=';
m= input(prompt); %command to request user to input mass value
prompt='velocity of body=';
v= input(prompt);%command to request user to input velocity value
Ke= 1/2 * m* (v^2);
display(Ke)
Explanation:
running the code, u would be prompted to input values after the equality sign, just enter without space and your result would be displayed