5. What is multithreading in Java, and how do you create a thread?
Answer: Multithreading is a Java feature that allows concurrent execution of two or more threads. It improves the performance of CPU-intensive tasks by utilizing multiple processors.
You can create a thread in two ways:
By extending the Thread class:
class MyThread extends Thread {
public void run() {
// Code for the thread
}
}
MyThread t = new MyThread();
t.start();
By implementing the Runnable interface:
class MyRunnable implements Runnable {
public void run() {
// Code for the thread
}
}
Thread t = new Thread(new MyRunnable());
t.start();
6. What is the significance of the static keyword in Java?
Answer:
Static Variable: A variable declared as static is shared among all instances of the class. It means that there is only one copy of the variable for all objects of that class.
Static Method: A method declared as static belongs to the class rather than to instances of the class. It can be called without creating an object of the class.
Static Block: A block of code that is executed once when the class is loaded into memory, often used for initialization.
7. What are the different types of exceptions in Java?
Answer:
Checked Exceptions: These are exceptions that are checked at compile-time, and the programmer must handle them using a try-catch block or declare them with throws. Examples include IOException, SQLException.
Unchecked Exceptions: These are exceptions that occur at runtime. These are not checked at compile-time, and the program may or may not handle them. Examples include NullPointerException, ArithmeticException.
Error: These are serious issues that typically can't be handled by the program, such as OutOfMemoryError, StackOverflowError.
8. What is the difference between String, StringBuilder, and StringBuffer in Java?
Answer:
String: It is immutable, meaning its value cannot be changed once created. Any operation on a String results in a new String object being created.
StringBuilder: It is mutable, meaning the value of the object can be modified. It is generally used for situations where a large number of string manipulations are needed. It is not thread-safe.
StringBuffer: It is similar to StringBuilder but is thread-safe. It is used when thread safety is required for string manipulation.
9. What are final, finally, and finalize in Java?
Answer:
final: It is a keyword used to define constants, prevent method overriding, or prevent class inheritance. For example:
final variable: Constant value that cannot be changed.
final method: Cannot be overridden by subclasses.
final class: Cannot be subclassed.
finally: It is a block that is used to ensure code execution after a try-catch block, regardless of whether an exception is thrown or not. It is used for cleanup tasks (e.g., closing files, database connections).
finalize(): It is a method in the Object class that is called by the garbage collector before an object is destroyed. It is generally used to perform cleanup actions, but its use is not recommended because it can lead to unreliable behavior.
10. What is the difference between ArrayList and LinkedList in Java?
Answer:
ArrayList: It is backed by a dynamic array. It provides fast access to elements via an index (O(1)), but insertion and removal of elements (especially in the middle of the list) are slower (O(n)), as it requires shifting elements.
LinkedList: It is backed by a doubly-linked list. Insertion and removal of elements are fast (O(1)) because there is no need to shift elements, but access time for elements is slower (O(n)), as it requires traversing the list.