Java
Java
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]); }
} }
} }
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.*;
import java.util.Scanner;
System.out.println("Enter a string:");
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++;