0% found this document useful (0 votes)
32 views

JAVA Cycle Sheet 1

The document contains a cycle sheet for a Programming in Java course, listing 16 programming assignments that cover topics like number manipulation, series generation, array processing, inheritance, interfaces, exceptions, and multithreading. The assignments include writing programs to calculate sums and reversals of digits, generate Fibonacci series, find factorials, sort arrays, overload area functions, implement inner classes, handle exceptions, create custom exceptions, and solve producer-consumer problems using threads.
Copyright
© Attribution Non-Commercial (BY-NC)
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)
32 views

JAVA Cycle Sheet 1

The document contains a cycle sheet for a Programming in Java course, listing 16 programming assignments that cover topics like number manipulation, series generation, array processing, inheritance, interfaces, exceptions, and multithreading. The assignments include writing programs to calculate sums and reversals of digits, generate Fibonacci series, find factorials, sort arrays, overload area functions, implement inner classes, handle exceptions, create custom exceptions, and solve producer-consumer problems using threads.
Copyright
© Attribution Non-Commercial (BY-NC)
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/ 1

SCHOOL OF INFORMATION TECHNOLOGY AND ENGG.

M.S (SOFTWARE ENGG.) – III SEMESTER


PROGRAMMING IN JAVA
CYCLE SHEET – I

1. write a program to display the sum of digit and display the reverse of the given
number
2. write a program to generate the Fibonacci series
3. write a program to find the factorial given number
4. write a program to find the largest and smallest number from the given array of
numbers
5. write a program to sort the given set numbers
6. write a program to find the area of circle, square, triangle and rectangle using
overloaded function area()
7. write a program to implement the inner class concept
8. write a program to display the students mark list by using inheritance
9. write a program to create your own package and use the same package for your
own application
10. write a program to create an interface called arithmetic, which defines methods
for sum, multiplication, division, subtraction, percentage and implement of them.
11. write a program to handle a exception using try & catch block (Zero division
problem)
12. write a program to handle a exception using throws and finally.
13. write a program to create our own exception, and use the same in your application.
14. write a program to implement simple thread program.
15. write a program to implement the multi thread concept
16. write a program to implement producer – consumer problem

You might also like