0% found this document useful (0 votes)
11 views2 pages

Chap 1 Ques

The document contains a series of programming questions focused on fundamental Python concepts. It includes tasks such as converting time, calculating area, averaging marks, and performing basic arithmetic operations. Each question requires the implementation of a Python program or expression to solve the given problem.

Uploaded by

Debu Nayak
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)
11 views2 pages

Chap 1 Ques

The document contains a series of programming questions focused on fundamental Python concepts. It includes tasks such as converting time, calculating area, averaging marks, and performing basic arithmetic operations. Each question requires the implementation of a Python program or expression to solve the given problem.

Uploaded by

Debu Nayak
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
You are on page 1/ 2

Join Telegram group using this link: https://t.

me/+leBJyZDDoUw3NWRl

Chapter1: Review of Python- Fundamental of Python


(Programming questions)

Q1: Write a program to covert the time inputted in minutes into hours and remaining
minutes.

Q2: Write a program to that accept radius of a circle and print its area.

Q3: Python program that accepts marks in 5 subject and output average marks.

Q4: Python program to get area of triangle.

Q5: Program to input a number and print its five multiples.

Q6: Write a program to read details like name, class, age of a student and then print the
details, firstly in the same line and then in separate line.

Q7: Write a program to read three numbers in three variables and swap first two variable
with the sums of first and second, second and third numbers, respectively.

Q8: Write a program that takes amount-in-dollars and dollar-to-rupees conversion price;
it then returns the amount converted to rupees.

Q9: Write python expressions to represent the following situations:


1) Add remainder of 8/3 to the product of 8 and 3.
2) Find the square root of the sum of 8 and 43.
3) Find the sum of the square roots of 8 and 43.
4) Find the integral part of the quotient when 100 is divided by 32.
Q10: Write python expression equivalent to the following arithmetic/algebraic
expression:
a a+b b 32 + 93
2 2
c 6∗𝑠𝑢𝑚 d 1
8-6+ - √𝑣𝑎𝑟 ut + 2 𝑎𝑡 2
7

You might also like