You are on page 1of 1

1 The Fibonacci sequence is defined by the following rule.

The first two values in the sequence


are 1 and 1. Every subsequent value is the sum of the two values preceding it. Develop a java
program that uses both recursive and non-recursive functions to print the first 15 values in the
Fibonacci sequence.
2 Write a java program to calculate gross salary & net salary taking the following data.
Input: empno, empname, basic
Process:
DA=50%of basic
HRA=25%of basic
CCA=Rs240/-
PF=10%of basic
PT=Rs100/-
Gross Salary = Basic + DA + HRA
Net Salary = Gross Salary – PF - PPT
3 Write a Java program that displays area of different Shapes (Rectangle,Square,Triangle) using
the method of overloading.
4 Write a Java program that checks whether a given string is a palindrome or not.

5 Write a java program that implements educational hierarchy using inheritance.

You might also like