Thanks to visit codestin.com
Credit goes to www.scribd.com

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

Class 10 Project Programs 2024-25

Uploaded by

deepa
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)
112 views3 pages

Class 10 Project Programs 2024-25

Uploaded by

deepa
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

SESHADRIPURAM PUBLIC SCHOOL

CLASS X
Subject: Computer Applications Project List-2024-25
Date of Submission: 30th September 2024
Instructions:
1. Choose any 20 programs from the following.
2. Execute the programs, take a printout of the output you get and paste it in the blank side of the project
book. The blank side of the project book should have program heading, variable description and the output.
3. The program code has to be written in the ruled side of the book.( Blank side of the project book has to be
written in black ink only and the ruled side in blue ink only .
4. Index page has to be written.

1. Write a program to check number entered is palindrome or not. A palindrome number is one that reads the
same from left and right eg. 1221, 323, 111, etc.

2. Write a program to find a number is perfect or not . A perfect number is one that is equal to the sum of the
cubes of its digits eg. 6(1+2+3), 28(1 + 2 + 4 + 7 + 14), 128, 8128, etc.
Program should continue till the user wants.

3. Write a program to check a number is armstrong or not. An armstrong number is one that is equal to the sum
of the cube of its digits eg. 153 ( 1+ 125+27) , 370 (27+343), 371 (27+ 343+1) , etc.

4. Write a program to find and print reverse of a number eg reverse of 1367 = 7631

5. Write a program to Program to find roots of a quadratic equation

6. Write a program to Print Factors of n and Sum of its Even and Odd Factors.

7. Write a program to Print All Prime factors of a given Number.

8. Write a program to Print Sum of Prime Digits of a Number.

9. Write a program to check whether the number entered by the user is special or not.
A Special number is one where the sum of the factorial of each digit of the number is equal to the
number itself.

10. Write a program to perform binary search on a list of integers given below, to search for an element
input by the user. If it is found display the element along with its position, otherwise display the message
“Search element not found”.
5,7,9,11,15,20,30,45,89,97

11. Define a class ‘Student described as below: [15]


Data members/instance variables : name,age,m1,m2,m3 (marks in 3 subjects), maximum, average
Member methods :
(i) A parameterized constructor to initialize the data members.
(ii) To accept the details of a student.
(iii) To compute the average and the maximum out of three marks.
(iv) To display the name, age, marks in three subjects, maximum and average.
Write a main method to create an object of a class and call the above member methods.

12. Write a menu driven program to accept a number and check and display whether it is a Prime Number or
not OR an Automorphic Number or not. (Use switch-case statement). [15]

(a) Prime number : A number is said to be a prime number if it is divisible only by 1 and itself and not by any
other number. Example : 3,5,7,11,13 etc.

(b) Automorphic number : An automorphic number is the number which is contained in the last digit(s) of its
square.
Example: 25 is an automorphic number as its square is 625 and 25 is present as the last two digits.
13. Write a program to store 6 element in an array P, and 4 elements in an array Q and produce a third array
R, containing all elements of array P and Q. Display the resultant array [15]

14. Define a class called mobike with the following description: [15]
Instance variables/data members: int bno – to store the bike’s number
int phno – to store the phone number of the customer
String name – to store the name of the customer
int days – to store the number of days the bike is taken on rent
int charge – to calculate and store the rental charge
Member methods:
void input( ) – to input and store the detail of the customer.
void computer( ) – to compute the rental charge
The rent for a mobike is charged on the following basis.
First five days Rs 500 per day;
Next five days Rs 400 per day
Rest of the days Rs 200 per day
void display ( ) – to display the details in the following format:
Bike No. PhoneNo. No. of days Charge
15. Write a program to input and sort the weight of ten people. Sort and display them in descending order
using the selection sort technique.

16. Write a program to accept a word and convert it into lowercase if it is in uppercase, and display the new
word by replacing only the vowels with the character following it.

17. Write a menu driven program to perform the following. (Use switch-case statement)
(a) To print the series 0, 3, 8, 15, 24 ……. n terms (value of ‘n’ is to be an input by the user).
(b) To find the sum of the series given below:
S = 1/2+ 3/4 + 5/6 + 7/8 … 19/20

18. WAP to input a number and check whether it is a Zero Free number or not, A Zero Free number is one which
does not contain any digit as Zero. (Hint: 123)

19. Write a program to check whether the number entered by the user is a Unique number or not. A Unique
number is one that has no repetition of digits. i.e. all the digits are distinct and appears only once. For e.g. 1234,
65234 etc… whereas digits like 1000, 65536, 121 are not.

20. WAP to check whether two numbers entered by the user belong to the set of Amicable Pair or not. Two
numbers are said to be Amicable Pair if the sum of factors of the 1st excluding the number is equal to the 2nd
number and the sum of factors of the 2nd number excluding itself is equal to the 1st E.g. 220 and 284

21. Input a string along with an encoding factor and write a cryptography program code to encrypt the data. E.g.
Input word is “APPLE” and Encoding factor is 3 then each letter gets encoded by a factor of 3 by adding it to its
ASCII equivalent resulting in “DSSOH”

22. Input a sentence and convert each word into a Piglatin. E.g. COMPUTER IS FUN becomes OMPUTERCAY ISAY
UNFAY

23. Input a sentence and display only the Palindrome words, like NITIN ARORA PLAYS FOOTBALL, gives NITIN,
ARORA

24. Input a sentence and display the total no. of letters, digits, uppercase letters, lowercase letters, spaces, special
characters, vowels and consonants are present in it.
25. Input a sentence and reverse each word without reversing the sequence of the words. E.g. COMPUTER IS FUN,
as RETUPMOC SI NUF
-----------------------------------------
Subject Teachers Sign: PRINCIPAL

You might also like