Answer:
Written in Python
mass = float(input("Mass: "))
velocity = float(input("Velocity: "))
KE = 0.5 * mass * velocity**2
momentum = mass * velocity
print("The object's momentum is "+str(momentum))
print("The object's kinetic energy is "+str(KE))
Step-by-step explanation:
This line prompts user for mass
mass = float(input("Mass: "))
This line prompts user for velocity
velocity = float(input("Velocity: "))
This line calculates kinetic energy
KE = 0.5 * mass * velocity**2
This line calculates momentum
momentum = mass * velocity
The next two lines prints the momentum and kinetic energy
print("The object's momentum is "+str(momentum))
print("The object's kinetic energy is "+str(KE))