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

Python Practical Questions File

The document lists practical Python programming questions aimed at various computational tasks. These tasks include calculating simple interest, determining prime numbers, generating patterns, and performing mathematical operations. Each question is a prompt for writing a Python program to solve specific problems.

Uploaded by

dilipkashyap.h1
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)
0 views1 page

Python Practical Questions File

The document lists practical Python programming questions aimed at various computational tasks. These tasks include calculating simple interest, determining prime numbers, generating patterns, and performing mathematical operations. Each question is a prompt for writing a Python program to solve specific problems.

Uploaded by

dilipkashyap.h1
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 Practical Questions

1 WAP to calculate Simple Interest.


2 WAP to calculate area & circumference of circle.
3 WAP to find greater of two numbers.
4 WAP to find greater of three numbers.
5 WAP to check given number is even or odd.
6 WAP to check given number is negative, positive or zero.
7 WAP to calculate volume of cone.
8 WAP to find grade of obtained marks.
9 WAP to check given number is prime or not.
10 WAP to find all prime numbers between 1 to 100.
11 WAP to find factorial of given number.
12 WAP to print Fibonacci series up to n terms.
13 WAP to find reverse of given number.
14 WAP to check given number is palindrome or not.
15 WAP to find sum of first n natural numbers.
16 Print number pattern (1, 1 2, 1 2 3, 1 2 3 4).
17 Print star pattern (*, * *, * * *, * * * *).
18 Print star pyramid pattern.
19 Print number pyramid pattern (1, 2 3, 4 5 6, 7 8 9 10).
20 Print inverted star pattern.
21 Print alphabet pattern (A, A B, A B C, A B C D).
22 Print alphabet pattern (A, A B, A B C, A B C D).
23 Print number palindrome pattern (1, 1 2 1, 1 2 3 2 1, 1 2 3 4 3 2 1).
24 Print alphabet reverse pattern.
25 Print number diamond pattern.

You might also like