fbpx

1. a) Define Array. Demonstrate how to declare, initialize, and access Arrays in Java with an example program.

Definition:
An array is a data structure that allows you to store multiple values of the same type in a single variable. In Java, arrays are of fixed size once initialized, meaning that the number of elements they can hold is determined when they are created.
Example Program:
				
					public class ArrayExample {
    public static void main(String[] args) {
        // Declare and initialize an array
        int[] numbers = new int[5]; // Array of 5 integers
        
        // Initializing array elements
        numbers[0] = 10;
        numbers[1] = 20;
        numbers[2] = 30;
        numbers[3] = 40;
        numbers[4] = 50;
        
        // Accessing and printing array elements
        System.out.println("Element at index 0: " + numbers[0]);
        System.out.println("Element at index 1: " + numbers[1]);
        System.out.println("Element at index 2: " + numbers[2]);
        System.out.println("Element at index 3: " + numbers[3]);
        System.out.println("Element at index 4: " + numbers[4]);
        
        // Using enhanced for loop to access all elements
        System.out.println("\nArray elements using enhanced for loop:");
        for (int num : numbers) {
            System.out.println(num);
        }
    }
}

				
			

Explanation:

  • Declaration: int[] numbers = new int[5]; declares an array of integers with 5 elements.
  • Initialization: Array elements are assigned values manually (e.g., numbers[0] = 10;).
  • Accessing: Elements are accessed via their index (numbers[0] for the first element).
  • Enhanced For Loop: The enhanced for loop (for (int num : numbers)) is used to iterate through and print the array’s elements.

1. b) Develop a program to apply bubble sort on array elements.

Bubble Sort:
Bubble sort is a simple sorting algorithm where each pair of adjacent elements is compared and swapped if necessary. This process repeats until the array is sorted.
Bubble Sort Example Program:
				
					public class BubbleSortExample {
    public static void main(String[] args) {
        int[] arr = {64, 34, 25, 12, 22, 11, 90}; // Unsorted array
        int n = arr.length;
        
        // Bubble Sort Algorithm
        for (int i = 0; i < n - 1; i++) {
            for (int j = 0; j < n - i - 1; j++) {
                if (arr[j] > arr[j + 1]) {
                    // Swap the elements
                    int temp = arr[j];
                    arr[j] = arr[j + 1];
                    arr[j + 1] = temp;
                }
            }
        }

        // Display the sorted array
        System.out.println("Sorted array:");
        for (int num : arr) {
            System.out.print(num + " ");
        }
    }
}

				
			

Explanation:

  • Outer Loop: Runs n-1 times, where n is the length of the array.
  • Inner Loop: Compares adjacent elements and swaps them if they are in the wrong order.
  • Array After Sorting: After the loops complete, the array is sorted, and the sorted array is printed.

1. b) Develop a program to apply bubble sort on array elements.

Bubble Sort:
Bubble sort is a simple sorting algorithm where each pair of adjacent elements is compared and swapped if necessary. This process repeats until the array is sorted.
Bubble Sort Example Program:
				
					public class BubbleSortExample {
    public static void main(String[] args) {
        int[] arr = {64, 34, 25, 12, 22, 11, 90}; // Unsorted array
        int n = arr.length;
        
        // Bubble Sort Algorithm
        for (int i = 0; i < n - 1; i++) {
            for (int j = 0; j < n - i - 1; j++) {
                if (arr[j] > arr[j + 1]) {
                    // Swap the elements
                    int temp = arr[j];
                    arr[j] = arr[j + 1];
                    arr[j + 1] = temp;
                }
            }
        }

        // Display the sorted array
        System.out.println("Sorted array:");
        for (int num : arr) {
            System.out.print(num + " ");
        }
    }
}

				
			

Explanation:

  • Outer Loop: Runs n-1 times, where n is the length of the array.
  • Inner Loop: Compares adjacent elements and swaps them if they are in the wrong order.
  • Array After Sorting: After the loops complete, the array is sorted, and the sorted array is printed.

2. a) Illustrate the concept of arrays of varying length with an example program.

Jagged Arrays (Arrays of Varying Length):

In Java, you can create arrays where each row can have a different number of columns. These are called jagged arrays.

				
					public class JaggedArrayExample {
    public static void main(String[] args) {
        // Declaration of a jagged array (array of arrays)
        int[][] jaggedArray = new int[3][];
        
        // Initializing each row with different lengths
        jaggedArray[0] = new int[2]; // Row 0 has 2 elements
        jaggedArray[1] = new int[4]; // Row 1 has 4 elements
        jaggedArray[2] = new int[3]; // Row 2 has 3 elements
        
        // Assigning values to the jagged array
        jaggedArray[0][0] = 1;
        jaggedArray[0][1] = 2;
        jaggedArray[1][0] = 3;
        jaggedArray[1][1] = 4;
        jaggedArray[1][2] = 5;
        jaggedArray[1][3] = 6;
        jaggedArray[2][0] = 7;
        jaggedArray[2][1] = 8;
        jaggedArray[2][2] = 9;
        
        // Accessing and displaying the jagged array
        for (int i = 0; i < jaggedArray.length; i++) {
            for (int j = 0; j < jaggedArray[i].length; j++) {
                System.out.print(jaggedArray[i][j] + " ");
            }
            System.out.println();
        }
    }
}

				
			
  • Declaration: int[][] jaggedArray = new int[3][]; declares a 2D array with 3 rows, but the number of columns varies for each row.
  • Initialization: Each row is initialized separately (e.g., jaggedArray[0] = new int[2];).
  • Accessing: Nested loops are used to access and print the values from each row.

2. b) Develop a program to apply binary search on array elements.

Binary Search:

Binary search is an efficient algorithm for finding an item from a sorted array. It works by repeatedly dividing the search interval in half.

Binary Search Example Program:

				
					import java.util.Arrays;

public class BinarySearchExample {
    public static void main(String[] args) {
        int[] arr = {12, 34, 54, 2, 3, 65, 90};
        
        // Sort the array before applying binary search
        Arrays.sort(arr);
        
        int target = 34;
        int result = binarySearch(arr, target);
        
        if (result == -1) {
            System.out.println("Element not found.");
        } else {
            System.out.println("Element found at index: " + result);
        }
    }
    
    public static int binarySearch(int[] arr, int target) {
        int left = 0;
        int right = arr.length - 1;
        
        while (left <= right) {
            int mid = left + (right - left) / 2;
            
            // Check if target is at mid
            if (arr[mid] == target) {
                return mid;
            }
            
            // If target is smaller, ignore the right half
            if (arr[mid] > target) {
                right = mid - 1;
            }
            // If target is larger, ignore the left half
            else {
                left = mid + 1;
            }
        }
        
        // Target not found
        return -1;
    }
}

				
			
  • Sorting: The array is sorted using Arrays.sort() before binary search can be applied.
  • Binary Search: The binarySearch method iteratively compares the middle element with the target and adjusts the search range (left and right indices) until the target is found or the range is exhausted.

3. a) Assess the importance of using interfaces for achieving multiple inheritance in Java with an example program.

Multiple Inheritance via Interfaces:

Java does not support multiple inheritance with classes due to the ambiguity it may cause. However, interfaces provide a way for a class to implement multiple functionalities (via multiple interfaces).

Multiple Inheritance Example Program:

				
					interface Animal {
    void eat();
}

interface AnimalSound {
    void makeSound();
}

class Dog implements Animal, AnimalSound {
    public void eat() {
        System.out.println("Dog is eating.");
    }

    public void makeSound() {
        System.out.println("Dog barks.");
    }
}

public class MultipleInheritanceExample {
    public static void main(String[] args) {
        Dog dog = new Dog();
        dog.eat();
        dog.makeSound();
    }
}

				
			
  • Interfaces: Animal and AnimalSound are interfaces that define behaviors.
  • Implementation: The Dog class implements both interfaces, allowing it to inherit and implement methods from both.
  • Use Case: Interfaces allow a class to share multiple behaviors without needing to have a shared parent class, useful in scenarios like event handling or where multiple different capabilities need to be combined.

3. b) Illustrate the concept of Super Keyword with a suitable example.

super Keyword:

The super keyword is used to access the immediate parent class. It can be used to call parent class methods and constructors.

super Keyword Example Program:

				
					class Animal {
    String name;

    Animal(String name) {
        this.name = name;
    }

    void display() {
        System.out.println("Animal name: " + name);
    }
}

class Dog extends Animal {
    Dog(String name) {
        super(name); // Call the parent class constructor
    }

    void display() {
        super.display(); // Call the parent class method
        System.out.println("Dog is barking.");
    }
}

public class SuperKeywordExample {
    public static void main(String[] args) {
        Dog dog = new Dog("Buddy");
        dog.display();
    }
}

				
			
  • Constructor: super(name); is used to call the constructor of the parent class (Animal).
  • Method: super.display(); is used to call the display method of the parent class before adding additional behavior in the Dog class.