0% found this document useful (0 votes)
29 views3 pages

X Record Works

The document outlines a series of programming tasks for Class X B and C at Kendriya Vidyalaya INS Dronacharya, Kochi, for the academic year 2023-2024. These tasks primarily involve writing Python programs to perform various mathematical calculations, data manipulations, and visualizations. The assignments cover a wide range of topics including basic arithmetic, control structures, list operations, and introductory data analysis techniques.
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)
29 views3 pages

X Record Works

The document outlines a series of programming tasks for Class X B and C at Kendriya Vidyalaya INS Dronacharya, Kochi, for the academic year 2023-2024. These tasks primarily involve writing Python programs to perform various mathematical calculations, data manipulations, and visualizations. The assignments cover a wide range of topics including basic arithmetic, control structures, list operations, and introductory data analysis techniques.
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/ 3

KENDRIYA VIDYALAYA INS DRONACHARYA, KOCHI

CLASS X B, C –– RECORD WORKS 2023 - 2024


1. Write program in python to Input your name and welcome message and display it appropriately to wish
you.
2. Write program in python to Accept two numbers and find their sum.
3. Write program in python to Accept the side of a square and find its Area.
4. Write program in python to Input Initial velocity (u), acceleration (f) and time duration (t) from the user and
find the final velocity (v) , where v = u + f t.
5. Write program in python to Input radius ( r ) and height (h) of a cylinder from the user and find the total
surface area and volume where surface area = 2πr(r+h) and volume = πr2h.
6. Write program in python to Input 3 sides from the user and check whether triangle can be formed or
not. If yes find the perimeter and area of the triangle.
7. Write program in python to Input two numbers and display the larger number.
8. Write program in python to Input two numbers and display the smaller number.
9. Write program in python to Input three numbers and display the largest number. 10. Write program in
python to Input three numbers and display the smallest number. 11. Write program in python to Input an
integer from the user and check it is odd or even. 12. Write program in python to Input a year from the user
and check whether it is leap year or not. 13. Write program in python to Input a natural number(n) and display
the sum of all the natural numbers till n. 14. Write program in python to Input a positive integer and display
all the series:
a) 1, 4, 7, 10, …, n
b) 5, 10, 15, 20, …. n
15. Write program in python to Input a positive integer and find the sum of all its digits. 16. Write program
in python to Input 2 integers and display the numbers within the given range which are divisible by 3 or
5.
17 - 19. Write program in python to : Generate the following patterns using for / while loops .
Pattern-1 Pattern-2 Pattern-3
*12345A
** 1 2 3 4 AB
*** 1 2 3 ABC
**** 1 2 ABCD
***** 1 ABCDE
20. Write program in python to Input a number and check if the number is a prime or composite number.
21. Write program in python to : Display the N terms of a Fibonacci series.
22. Write program in python to accept a number and display Fibonacci Series till that number.
23. Write program in python to Input a number and reverse it .
24. Write program in python to Accept a Number and Reverse it. Also check whether a given number is a
Palindrome or not.

25. Write program in python to Accept a Number and Display the Multiplication Table of a Number
26. Write program in python to Accept a Number and Display the Factors of it.
27. Write program in python to Input a positive integer and find its factorial. n! = 1x2x3x…x n 28. Write
program in python to Input a list find sum of all numerical values present in it. 28. Write program in
python to Input a list of integers. If integer is even divide it by 2. If integer is odd multiply by 2. Display
both input and output lists.
29. Write a Python Program to find the largest number in a list without using built in functions. 30.
Write a Python Program to find the smallest number in a list without using built in functions. 31. Write
a Python Program to Input a list of numbers and swap elements at the even location with the elements
at the odd location.

32. Write a Python Program to Input a list of elements, search for a given element in the list. 33.
Write a Python Program to Input a list of elements, find the minimum value from the list. 34. Write a
Python Program to Input a list of elements, find the maximum value from the list. 35. Write a Python
Program to accept a list of elements and find the count of Odd Numbers and Even
Numbers / elements in a List.
36. Write a Python Program to accept a list of elements and find the sum of Odd Numbers and Even
Numbers / elements in a List separately.
37. Write a Python Program to accept a list of elements and find the count the frequency of occurrence of an
element in a List.

38. Write the Python Program to accept a List of elements and Multiply the Odd elements by 7 and divide the
even Elements by 7and take the quotient.
39. Write the Python Program to accept the List of elements and insert a number into the List and arrange the
list elements in sorted order.
40. Write the Python Program to accept the List elements and find the second largest element in the List.
41. Write the Python Program to accept the List of elements and delete all the occurrences of an element
from the List.
42. Write the Python Program to accept the List of elements and display all Prime numbers in the List. 43.
Write the Python Program to accept the List of elements and display all Armstrong Numbers in the List.
( Armstrong Numbers are those numbers whose sum of cubes of its digits is the number itself )
44. Write the Python Program to accept two Lists of elements and Merge/concatenate/join them.
45. Write the Python Program to calculate the mean of a given List of numbers/elements. 46.
Write the Python Program to find the frequencies of all elements of a List.
47. Write the Python Program to input two lists and display the maximum element from the elements of both
the list combined, along with its index in its list.
48. Write the Python Program to find the sum of all elements in a List.
49. Write the Python Program to accept a List of elements and create two new lists, one having all positive
numbers and the other having all negative numbers from the given list. Print all three lists. 50. Write a
Python Program to read a List of integers and find the median.
(The Median Value of a list of values is the middle one when they are arranged in order. If there are two
middle values then take the average.)
51. Write the Python Program to read a list of elements. Modify this list so that it does not contain any
duplicate elements. i.e all elements occurring multiple times in the list should appear only once. 52.
Write the Python Program to reverse a list of integers.

53. Write a python program to draw a line chart.


54. Write a python program to draw a Bar chart.
55. Write a python program to draw a Pie chart.
56. Write a python program to draw a scatter plot.
57. Write program in python to Input confusion matrix, display confusion matrix in tabular form.
Calculate Accuracy, Precision, Recall and F1 Score.
58. Write program in python to Conduct survey in the locality and input data in tabular form.
Display Pie chart / graph representing data. Display the highest value data.
59. Machine Learning Project: Collect data in tabular form calculate
a. Mean
b. Median
c. Mode
60. Write a python program to process an image.

You might also like