0% found this document useful (0 votes)
295 views

Important Programs

The document lists 32 important questions to write Python programs for, including programs to calculate factorials, greatest common divisors, checking for palindromes, computing square roots with Newton's method, reversing numbers, exponentiation, swapping numbers, finding max/min in lists, and determining if numbers are positive or negative. It also includes questions about linear searches, binary searches, sorting lists with different algorithms, string operations, dictionary operations, and matrix operations. Many questions involve writing programs to manipulate common Python data types like lists, strings, tuples, and dictionaries.

Uploaded by

Aro Jaya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
295 views

Important Programs

The document lists 32 important questions to write Python programs for, including programs to calculate factorials, greatest common divisors, checking for palindromes, computing square roots with Newton's method, reversing numbers, exponentiation, swapping numbers, finding max/min in lists, and determining if numbers are positive or negative. It also includes questions about linear searches, binary searches, sorting lists with different algorithms, string operations, dictionary operations, and matrix operations. Many questions involve writing programs to manipulate common Python data types like lists, strings, tuples, and dictionaries.

Uploaded by

Aro Jaya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

IMPORTANT QUESTIONS

1. Write a Python program to find the factorial of given number using recursive function.
2. Write a Python program to compute Greatest Common Divisor of two numbers using function.
3. Write a Python program to check the given number is palindrome or not.
4. Write a Python program to compute the square root of a given number using Newton’s method.
5. Write a Python program to reverse of given number using while loop.
6. Write a Python program to compute exponentiation of a numbers.
7. Write a Python program to swap two numbers using function.
8. Write a Python program to find maximum and minimum number in a list.
9. Write a Python program to find whether the given number is positive or negative.
10. Write a Python program to find maximum and minimum number in a list.
11. Write a Python program to find whether the given number is even or odd.
12. Write a Python program to search a number in list of numbers using linear search.
13. Write a Python program to find the sum of ‘N’ natural number using for loop.
14. Write a Python program to search a number in list of numbers using binary search.
15. Write a Python program to find largest among three numbers.
16. Write a Python program to arrange list of numbers using selection sort.
17. Write a Python program
i. To calculate the length of a string
ii. To reverse words in a string
iii. To display same string multiple times
iv. To concatenate two strings
v. Str1=”South India” , using string slicing to display “India”
18. Write a Python program to arrange list of numbers using insertion sort.
19. Write a Python program
i. To add new elements to the end of the list
ii. To reverse elements in the list.
iii. To display same list elements multiple times.
iv. To concatenate two list.
v. To sort the elements in the list in ascending order.
20. Write a Python program to arrange list of numbers using merge sort.
21. Write a Python program for cloning the list.
22. Write a Python program to compute first ‘n’ prime numbers.
23. Write a Python program for aliasing the list.
24. Write a Python program to multiply the two matrices.
25. Write a Python program: “tuple1 = (10,50,20,40,30)”
i. To display the elements 10 and 50 from tuple1
ii. To display length of a tuple1.
iii. To find the minimum element from tuple1.
iv. To add all elements in the tuple1.
v. To display same tuple1 multiple times.
26. Write a Python program to sum of two matrices.
27. Write a Python program
IMPORTANT QUESTIONS

i. To create a dictionary
ii. To adding an element to dictionary
iii. To display length of the dictionary.
iv. To updating element in dictionary.
v. To remove all elements from the dictionary.
28. Write a Python program word count in command line arguments.
29. Write a Python program to find largest among three numbers.
30. Write a Python program to find the most frequent words in a text read from a file.
31. Write a Python program to find largest among three numbers.
32. Write a Python program for elliptical orbits in Pygame.
33. Write a Python program to find whether the given number is even or odd.
34. Write a Python program for bouncing ball in Pygame.

You might also like