) In physics, an object that is in motion is said to have kinetic energy. The following formula can be used to determine a moving object’s kinetic energy: KE = ½ mv2 The variables in the formula are as follows: KE is the kinetic energy, m is the object’s mass in kilograms, and v is the object’s velocity, in meters per second. Write a method named kineticEnergy that accepts an object’s mass (in kilograms) and velocity (in meters per second) as arguments. The method should return the amount of kinetic energy that the object has. Demonstrate the method by calling it in a program that asks the user to enter values for mass and velocity.

Respuesta :

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