0% found this document useful (0 votes)
3 views1 page

Python Questions

The document contains a series of Python programming questions aimed at practicing various concepts. It includes tasks such as calculating time of free fall, kinetic energy, factorial of a number, summing even numbers in a list, finding the largest of three numbers, and generating a multiplication table. Each question provides a specific programming challenge to enhance coding skills.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Python Questions

The document contains a series of Python programming questions aimed at practicing various concepts. It includes tasks such as calculating time of free fall, kinetic energy, factorial of a number, summing even numbers in a list, finding the largest of three numbers, and generating a multiplication table. Each question provides a specific programming challenge to enhance coding skills.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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.

You might also like