[go: up one dir, main page]

0% found this document useful (0 votes)
40 views5 pages

Class Ix 2024-25

Uploaded by

obamabinladin519
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)
40 views5 pages

Class Ix 2024-25

Uploaded by

obamabinladin519
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/ 5

COMPUTER APPLICATION PROJECTS LIST 2024 – 2025

GRADE : IX

Students of Class IX-Computer Application as per requirement of CISCE (ICSEBoard), have to make
a practical file in the subject of Computer Application

Work Specification: Java assignments to be completed for ICSE 2024-25


practical file

Materials /Resources Required: Computer with BlueJ installed, A4 Sheets and


A4 plain sheets for output.

Instructions /Guidelines : Complete all Assignments

1. For each assignment, arrange sheets having:


a. Problem Statement
b. Coding
c. Variable Description Table
d. Input / Output screenshot
2. Class name of each program will be student name only
3. Each Page must have a specified page number.
4. New program will start from new page.
5. Presentation must be upto the mark and impressive
6. Both side print out is not allowed
7. Project file can be bound with spiral binding
8. Conclusion
You can watch this video ---
https://youtu.be/OnD1ipochYo?si=hkfjmTUfXbawnzdj
Following documentation sequence must be followed :
1. Title Page
2. Acknowledgment
3. Index Page (with Sr. No., Topic Name, Page Number )
4. Actual Practical
a. Title
b. Question
c. Code
d. Variable Description Table
5. Conclusion

ASSIGNMENT 1 :
A. Write a program for calculating area of a circle whose radius is 10 cm & a rectangle
with length 10 cm & breadth 5 cm. Display all the values. (use PI = 3.14)
B. Write a program for calculating difference between the areas of two circles with
radius 20 cm & 30 cm. Display both the radius, areas along with their difference as
the final output. (use PI = 3.14)
C. Write a java program for calculating the perimeter of a circle with radius 15 cm and a
rectangle with length 30 cm & breadth 10 cm. Display all the values. (use PI = 3.14)

ASSIGNMENT 2 :
Write a java program for displaying all the even numbers from 1 – 100 with a tab
space, as shown below,
2 4 6 8 10……

ASSIGNMENT 3 :
A. Write a java program for calculating the sum of even & odd numbers from 1 –
20. Display the numbers along with their sums individually.
B. Write a java program for calculating the product of even & odd numbers from 1 –
10. Display the numbers along with their sums individually.

ASSIGNMENT 4 :
Import the Math class. Create a user-defined class named as “Math_Functions”; take two
variables x & y, having values 10 & 20.
Write the program to calculate –
a. maximum number
b. minimum number
c. square root of y
d. cube root of x
e. find the value of yx & xy
f. log(x) and log(y) using Math Functions; and display all the values in the main()
function.

ASSIGNMENT 5 :
A. Write a program to take input two numbers. Find LCM & HCF

B. Write a program to take input two numbers. MARGE TWO INTEGER NOS .

C. Write a program to take input any number. Find the frequency of each digits .

ASSIGNMENT 6 :
A. Write a switch case java program which takes month number as user input and displays
the number of days in every month based on the user’s input. E.g., When user enters
‘1’ then display “January – This month has 31 days”.
B. Write a switch case java program to display school subjects & college subjects, where
the user will enter ‘1’ or ‘2’ for displaying school subjects or college subjects
respectively. If the user enters ‘2’ then again give the choice to the user to enter the
Character ‘A’ for Arts Subjects, ‘C’ for Commerce Subjects & ‘S’ for Science subjects
and display the subjects accordingly. Use appropriate statements.
ASSIGNMENT 7 :
A. Write a java program to calculate the factorial of a number; display the number
along with its factorial result.

Note : Factorial of n is the product of all positive descending integers.


Factorial of n is denoted by n!.
For example:
4! = 4*3*2*1 = 24
5! = 5*4*3*2*1 = 120
B. Write a program to take input any integer no. Find the Minimum Prime Factor present in
the no.

C. Write a program to take input any number. check it is EVIL or not .

It is a number which has even no of 1 or even no of 0 or odd no of 1 or odd no of 0

D. Write a program to take input any number. check the number is a PALPRIME number
or not , Def : A number is said to be palprime if the number is a palindrome and prime
. Example 131

ASSIGNMENT 8:

A. Write a program to check whether the number is Neon number or not.

Example : 9 =9*9 =81=8+1=9

B. Write a program to print the given series ---


1 + 12 + 123 + 1234 + 12345+ 123456 + 1234567 + 12345678 + 123456789

ASSIGNMENT 9 :
A. Write a java program to check whether a number is a palindrome number or not.

Note : A palindrome number is a number that is same after reverse. For example 545, 151, 34543,
343, 171, 48984 are the palindrome numbers. It can also be a string like LOL, MADAM etc.

B. Write a java program to check whether a number is a Duck number or not.

Note : Duck number is another special positive non-zero number that contains zero in it. The
digit zero should not be presented at the starting of the number. Zero can be present at any of the
positions except the beginning of the number. E.g.: 001220, 124058, 8050, etc.
ASSIGNMENT 10 :
Write a java program to display Fibonacci series up-to 15
terms. e.g. 0, 1, 1, 2, 3, 5, 8, 13

Note : In fibonacci series, next number is the sum of previous two numbers,
for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55….,etc.
The first two numbers of fibonacci series are 0 and 1.

ASSIGNMENT 11:
Write a java program for displaying all the Armstrong numbers between 0 – 1000.
Note : An Armstrong number is a positive m-digit number that is equal to the sum of the
mth powers of their digits. It is also known as pluperfect, or Plus Perfect,
or Narcissistic number.
For Example :
153: 13 + 53 + 33 = 1 + 125+ 27 = 153
125: 13 + 23 + 53 = 1 + 8 + 125 = 134 (Not an Armstrong Number)

ASSIGNMENT 12 :
Write a program to display the following star patterns using two different java methods.
* *****
** ****
*** ***
**** **
***** *

ASSIGNMENT 13 :
A. Write a program to display the following star pattern.
*
* *
* * *
* * * *
* ** * *

B. Write a program to display the following star pattern.


* * * * *
* * * *
* * *
* *
*
ASSIGNMENT 14 :
A. Write a program to display the following
number pattern.
1
12
12 3
12 3 4
12 3 4 5

B. Write a program to display the following number pattern.


1
12
123
1234
12345
ASSIGNMENT 15 :
A. Write a program to display the following number
pattern.
1
22
33 3
44 4 4
55 5 5 5

B. Write a program to display the following number pattern.


1
12
123
1234
12345

You might also like