You are on page 1of 2

Projects for Java Programming

Information Technology

Do the following programs in JAVA.


Simple Programs

Q.1. WAP in java to print welcome to java programming.

Q.2. WAP in java to print volume of a cube.

Q.3. WAP in java of swapping of two numbers without taking a third variable.

Conditional Programming

Q.4. WAP in java to check a number is even or odd.

Q.5. WAP in java to find out greatest out of 4 numbers. (By both methods using logical operators and by
nested if).

Q.6. WAP in java take three variables date, month, and years and print the date in following format:

If date=1 or date 21 or date=31 then print st followed by the date.

If If date=2 or date 22 then print rd followed by the date.

If date=3 or date 23 then print rd followed by the date.

Else print th followed by the date.

For month=1 then

print January and so on (for month condition use switch case)

For year print last two digits of year.

(Ex- if d=16, m=6, and y=2012 then the out should be 16th/june/12)

Loop Programming

Q.7. WAP in Java to print a series like 1,3,5,7,…….100

Q.8. WAP in JAVA to print the given series 1+2+3………+10

Q.9. WAP in Java to print divisible of 13 between number 1 to 100

Loop programming with conditional programming

Q.10. WAP in java to print all factors of a number.

Q.11. WAP in Java to check a number is prime or not.


Array Programs

Q.12. WAP in Java to print maximum and minimum element of an array.

Q.13. WAP in java to swap the elements of array like first element with last element and last element
with first element.

Q.14. WAP in Java to print even elements of an array.

String Program

Q.15. WAP program in Java to find out the following in a string:

i. Index of a string

ii. length of the string

iii. change the upper case letter to lower case

iv. change the lower case letter to upper case

Note: Take the screen shot of input and output and then after printing paste it in your practical file.

All the above program you have to do by input method and function also.

You might also like