0% found this document useful (0 votes)
11 views4 pages

Java

This document contains 6 Java programming problems involving object-oriented concepts like constructors, inheritance, interfaces, and method overloading. The problems include calculating area using constructors, adding matrices, single inheritance with Employee and Department classes, method overloading for area of square and rectangle, implementing an interface for rectangle area and perimeter, and implementing multiple interfaces.

Uploaded by

Swarna Sajjanar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
11 views4 pages

Java

This document contains 6 Java programming problems involving object-oriented concepts like constructors, inheritance, interfaces, and method overloading. The problems include calculating area using constructors, adding matrices, single inheritance with Employee and Department classes, method overloading for area of square and rectangle, implementing an interface for rectangle area and perimeter, and implementing multiple interfaces.

Uploaded by

Swarna Sajjanar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 4

JAVA for ( j= 0 ; j < col ;j++ )

mat2[i][j] = in.nextInt();
}
System.out.println();
1. WAP in java to calculate area of circle and triangle using }
constructor overloading. for ( i= 0 ; i < row ; i++ )
import java.util.Scanner; for ( j= 0 ; j < col ;j++ )
class Shape { sum[i][j] = mat1[i][j] + mat2[i][j] ;
private double area; System.out.println("Sum of matrices:-");
// Constructor for calculating the area of a circle for ( i= 0 ; i < row ; i++ )
{
public Shape(double radius) { for ( j= 0 ; j < col ;j++ )
area = Math.PI * radius * radius; System.out.print(sum[i][j]+"\t");
} System.out.println();
// Constructor for calculating the area of a triangle }
public Shape(double base, double height) { }
area = 0.5 * base * height; }
}
public double getArea() {
return area;
}
}
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the radius of the circle: ");
double radius = scanner.nextDouble();
Shape circle = new Shape(radius);
System.out.println("Area of the circle is: " + circle.getArea());
3. Class Department extends the properties of Employee. Employee
System.out.print("Enter the base length of the triangle: "); has method for setting thevalues for employee name, number and a
double base = scanner.nextDouble(); method for displaying the same. Similarly department has method for
System.out.print("Enter the height of the triangle: "); setting the values for department name, number and a method for
double height = scanner.nextDouble(); displaying the same. Write a java program for above problem
Shape triangle = new Shape(base, height); statement using single inheritance.
System.out.println("Area of the triangle is: " + triangle.getArea());
scanner.close(); package javaexp1;
} class Emp {
private String name;
}
private int number;
2. WAP in java to add two matrices. Accept input from user.
public void setEmployeeDetails(String empName,
package javaexp1; int empNumber) {
import java.util.Scanner; name = empName;
class matrixaddition number = empNumber;
{ }
public static void main(String args[])
{ public void displayEmployeeDetails() {
int row, col,i,j; System.out.println("Employee Name: " +
Scanner in = new Scanner(System.in); name);
System.out.println("number of rows and columns: "); System.out.println("Employee Number: " +
row = in.nextInt(); col = in.nextInt(); number);
int mat1[][] = new int[row][col]; }
int mat2[][] = new int[row][col]; }
int sum[][] = new int[row][col];
System.out.println("Enter the elements of matrix1"); class Department extends Emp {
{ private String departmentName;
for ( i= 0 ; i < row ; i++ ) private int departmentNumber;
{
for ( j= 0 ; j < col ;j++ ) public void setDepartmentDetails(String
mat1[i][j] = in.nextInt(); deptName, int deptNumber) {
} departmentName = deptName;
System.out.println(); departmentNumber = deptNumber;
} }
System.out.println("Enter the elements of matrix2");
{ public void displayDepartmentDetails() {
for ( i= 0 ; i < row ; i++ ) displayEmployeeDetails(); // Call the method
{ from the parent class
System.out.println("Department Name: " + 5. Write a java program to calculate area and perimeter of rectangle
departmentName); using interface.
System.out.println("Department Number: " +
departmentNumber); package javaexp;
} //Define the Rectangle interface
} interface Rectangle {
public class Main { double getArea();
public static void main(String[] args) { double getPerimeter();
Department department = new Department(); }
department.setEmployeeDetails("Ramesh Singh", class RectangleImpl implements Rectangle {
969); private double length;
department.setDepartmentDetails("EXTC private double width;
Department", 400);
public RectangleImpl(double len, double wid) {
System.out.println("Employee Details:"); length = len;
department.displayEmployeeDetails(); width = wid;
}
System.out.println("\nDepartment Details:");
department.displayDepartmentDetails(); public double getArea() {
} return length * width;
} }
public double getPerimeter() {
return 2 * (length + width);
}
}
public class Main {
public static void main(String[] args) {
Rectangle rectangle = new RectangleImpl(5, 3);

System.out.println("Area: " +
rectangle.getArea());
4. Write a java program to display area of square and System.out.println("Perimeter: " +
rectangle.getPerimeter());
rectangle using method overloading
}
package javaexp1; }
public class Area_calculator
{
public static void main(String[] args) {
double squareArea = calculateArea(5.0);
double rectangleArea = calculateArea(4.0, 6.0);
6. Animal implements Movable and Crawlable interfaces. Movable
System.out.println("Area of the square: " + has method moveFast and Crawlable has Crawl. Write a java program
squareArea);
to implement the interface.
System.out.println("Area of the rectangle: " +
rectangleArea); package javaexp;
}
interface Movable {
// Calculate the area of a square void moveFast();
public static double calculateArea(double }
sideLength) { interface Crawlable {
return sideLength * sideLength; void crawl();
} }
class Animal implements Movable, Crawlable {
// Calculate the area of a rectangle public void moveFast() {
public static double calculateArea(double length, System.out.println("The animal is moving fast!");
double width) { }
return length * width; public void crawl() {
} System.out.println("The animal is crawling!");
} }
}
public class main2 {
public static void main(String[] args) {
Animal animal = new Animal();
animal.moveFast();
animal.crawl();
}
}
7. Write a java program to show Array Index out of Bounds 9. Create two user-defined methods such as printEven() and printOdd()
to print even and odd numbers. Create two threads, i.e., thread1 and
Exception.. thread2, for even and odd numbers simultaneously such that thread1
package javaexp; will call print EvenNumbers() method and the thread2 will call
class ArrayException printOddNumbers() method.

{ package javaexp12;
public static void main(String args[]) class NumberPrinter {
{ // Method to print even numbers
int A[]={101,102,103,104}; void printEven() {
try for (int i = 2; i <= 10; i += 2) {
{ System.out.println("Even: " + i);
for(int i=0;i<5;i++) }
{ System.out.println("element at "+i+"="+A[i]); } }
}
catch(ArrayIndexOutOfBoundsException e) // Method to print odd numbers
{ System.out.println("Array index out of bound"); } void printOdd() {
A[3]=105; for (int i = 1; i <= 10; i += 2) {
System.out.println("modified element at index System.out.println("Odd: " + i);
3="+A[3]); }
} }
} }

public class main {


public static void main(String[] args) {
// Create an instance of NumberPrinter
NumberPrinter numberPrinter = new
NumberPrinter();

// Create two threads


8. Write a java program to accept 2 integer numbers from command Thread thread1 = new Thread(() -> {
line. Divide first number by second and print the result. Show numberPrinter.printEven();
Arithmetic Exception and Number Format Exception using multiple });
catch statement.
Thread thread2 = new Thread(() -> {
package javaexp; numberPrinter.printOdd();
import java.util.Scanner; });

public class Multicatch { // Start both threads


public static void main(String[] args) { thread1.start();
Scanner scanner = new Scanner(System.in); thread2.start();
}
System.out.println("Please enter two integer }
numbers:");
String num1 = scanner.nextLine();
String num2 = scanner.nextLine();

try {
int n = Integer.parseInt(num1);
int n1 = Integer.parseInt(num2);
int n2 = n / n1;
System.out.println("n2 = " + n2);
} catch (ArithmeticException e) {
System.out.println("Arithmetic exception:
Division by zero is not allowed."); 10.WAP to write an applet in java to display a face.
} catch (NumberFormatException e) {
System.out.println("Number format exception import java.applet.Applet;
occurred. Please enter integer numbers.");
} import java.awt.*;

scanner.close(); public class FaceApplet extends Applet {


}
} public void paint(Graphics g) {
// Draw the face outline } else {

g.drawOval(60, 60, 200, 200); specialChars++;

// Draw the eyes }

g.fillOval(90, 120, 50, 20); }

g.fillOval(190, 120, 50, 20); System.out.println("Number of uppercase characters: " +


upperCase);
// Draw the mouth
System.out.println("Number of lowercase characters: " +
g.drawArc(110, 130, 95, 95, 0, -180);
lowerCase);
}
System.out.println("Number of digits: " + digits);
}
System.out.println("Number of spaces: " + spaces);
11.Write a Java Applet program for creating house.
System.out.println("Number of special characters: " +
import java.applet.Applet; specialChars);
import java.awt.*;
}
public class HouseApplet extends Applet { }
public void paint(Graphics g) {
// Draw the base of the house
g.drawRect(100, 300, 200, 200);
// Draw the roof
g.drawLine(100, 300, 200, 200);
g.drawLine(200, 200, 300, 300);
// Draw the door
g.drawRect(175, 400, 50, 100);
}
}

12. Write a java program to find number of uppercase,


lowercase characters, blank spaces, digits and special
character from a string.

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.println("Enter a string:");

String str = scanner.nextLine();

int upperCase = 0, lowerCase = 0, spaces = 0, digits = 0,


specialChars = 0;

for (int i = 0; i < str.length(); i++) {

char ch = str.charAt(i);

if (Character.isUpperCase(ch)) {

upperCase++;

} else if (Character.isLowerCase(ch)) {

lowerCase++;

} else if (Character.isDigit(ch)) {

digits++;

} else if (Character.isWhitespace(ch)) {

spaces++;

You might also like