Grade X - Computer Applications - Practical Assignment
Grade X - Computer Applications - Practical Assignment
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().