Python Programming Questions
1. Write a Python program to input the height of a body dropped from rest and calculate the time
taken to reach the ground using the formula: t = √(2h/g). (Take g = 9.8 m/s²).
2. Write a Python program to input the mass and velocity of a body and calculate its kinetic energy
using: KE = 1/2 mv².
3. Write a Python program to input a number and find its factorial using a loop.
4. Write a Python program that accepts a list of numbers and prints the sum of all even numbers in
the list.
5. Write a Python program to input three numbers and display the largest among them using
if-elif-else.
6. Write a Python program to input a number and print its multiplication table up to 10.