public class BubbleSort {
public static void bubbleSort(int[] arr) {
int n = arr.length;
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
// Swap arr[j] and arr[j+1]
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
public static void main(String[] args) {
int[] arr = {64, 34, 25, 12, 22, 11, 90};
System.out.println("Array before sorting:");
for (int num : arr) {
System.out.print(num + " ");
}
bubbleSort(arr);
System.out.println("\nArray after sorting:");
for (int num : arr) {
System.out.print(num + " ");
}
}
}
#Java Inheritance Interview Questions #inheritance | #multilelelinheritance | #single inheritance | #javainheritance | #oppsinheritance | #java | #OOps | #corejava | #corejavainheritance | #java inheritance | #coreinheritance | #oopjavainheritance 1: What is inheritance? A: Inheritance is the most important feature in any object-oriented programming language, This is a child-parent relationship that allows as to reuse the same logic or same code in a specific manner. 2: How many types of inheritance are supported by java? A: 4 types of inheritance are supported by java, Single-Level, Multi-Level, Hierarchical, Multiple. Note: In java multiple inheritance, we can achive through Interface. ...
Comments
Post a Comment