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

Grade X - Computer Applications - Practical Assignment

The document contains 30 programming assignments for Class 10 practical exams. The assignments cover a range of programming concepts including arrays, functions, classes, strings, searching, and mathematical and financial calculations. Students are asked to write programs to calculate compound interest, check if a triangle is valid, convert cases of letters, find averages and sums of arrays, and more. They will apply concepts like functions, conditionals, loops, arrays and classes to solve the problems.

Uploaded by

roshni gupta
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)
162 views2 pages

Grade X - Computer Applications - Practical Assignment

The document contains 30 programming assignments for Class 10 practical exams. The assignments cover a range of programming concepts including arrays, functions, classes, strings, searching, and mathematical and financial calculations. Students are asked to write programs to calculate compound interest, check if a triangle is valid, convert cases of letters, find averages and sums of arrays, and more. They will apply concepts like functions, conditionals, loops, arrays and classes to solve the problems.

Uploaded by

roshni gupta
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

St.

Mary's ICSE School


Class - X Practical Assignments 2021-22

S.No. Program Sign


Write a program to accept the amount from the user and display the
1 breakup in descending order of denomination alongwith the total number
of notes.
2 Write a program to find the distance between two points in a plane.
Write a program to accept a number and display its absolute value using
3
ternary operator only.
Write a program to accept a number and calculate its square root and
4
cube root. Display the result by rounding it off.
Write a program that inputs principal,amount,rate of interest,time and
5
calculate Compound Interest
Write a program to accept 3 sides of a traingle and determine whether they
6 form a triangle or not.If it's a triangle check whether it forms a right angled
triangle or not.

Write a program to calculate the maturity amount that will be received by


the customer based on the rate given as follows;taking sum and number of
days as inputs,
No. Of Days Rate Of Interest
7
Upto 180 days 5.5%
181 to 364 days 7.5%
Exact 365 days 9.0%
More than 365 days 8.5%

Write a program to calculate and print the sum of even and odd numbers
8
of first n natural numbers.
Write a program to calculate and print the sum of even and odd numbers of n
9
numbers entered by the user.
Write a program to count and display divisors of a number. Check whether the
10
number is a perfect square or not
Write a program to input a number. Print the count of digits , sum of digits
11
and reverse.
Write a program to accept a word and display the number of vowels and
12
consonants
Write a menu driven program to check if the number entered by user is prime
13
number, palindrome number,armstrong nuber
Create an overloaded function area() to find the area of right angled
14
triangle,square,rectangle amd circle.
Write a program to create a class Student.Design a constructor that initialises
the data members with default initial values.The program should have the
provision of acceptig from user the rollnumber, name , marks in three subjects
15
in a method accept() , calculate the total marks and average in compute() and
display the complete information in display(). Create an object of the class
and call the member methods from main().

Write a program to input a character, first check whether it is a letter, then


16
check its case otherwise check whether it is a digit or a special character.
Write a program to input a letter and display the new letter and its ASCII code
17
after changing the case.
18 Write a program to count the number of vowels in a string
Write a program to accept the full name of a person and print it in short with
19
last name. E.g. Subhash Chandra Bose -------- S.C.Bose
Write a program toaccept a string as a sentence. Display the new sentence
20
after reversing the characters of each word.
21 Write a program to accept a word and display the word in PigLatin form.
Write a program to accept a word and check whether it is Palindrome or
22
not.
Write a program to accept a sentence and display :
a. Number of lowercase characters
23 b. Number of uppercase characters
c. Number of special characters
d. Number of digits present
Write a program to accept a word and convert it into lowercase if it is in
24 uppercase and display the new word by replacing only the vowels with the
character following it. E.g. computer-----cpmpvtfr
Write a program to accept 10 in integers in an array. Calculate and display the
25
number of even numbers and odd numbers in the array.
Write a program to accept n elements into an integer array and print their
26
sum.
Write a program to accept n elements into an integer array and display the
27
average of elements in the array.
Write a program to input ten different elements in an array and then display
28
the greatest and the smallest element.
29 Write a program to perform linear search on a character array.
30 Write a program to perform binary search on a Integer array.

You might also like