Real interview questions from top companies for Java developer. Includes theoretical concepts and coding problems.
What is the difference between '==' and '.equals()' in Java?
In Java, '==' is used to compare the memory locations of two objects, whereas '.equals()' is used to compare the actual values of two objects.
What is the purpose of the 'finally' block in Java?
The 'finally' block in Java is used to execute a set of statements regardless of whether an exception is thrown or not. It is typically used to release system resources such as file handles or database connections.
What is the difference between 'interface' and 'abstract class' in Java?
In Java, an 'interface' is a abstract concept that defines a contract that must be implemented by any class that implements it, whereas an 'abstract class' is a class that cannot be instantiated and is intended to be inherited by other classes.
What is the purpose of the 'synchronized' keyword in Java?
The 'synchronized' keyword in Java is used to ensure that only one thread can execute a block of code at a time, thereby preventing concurrent access to shared resources.
What is the difference between 'HashMap' and 'Hashtable' in Java?
In Java, 'HashMap' and 'Hashtable' are both implementations of the 'Map' interface, but 'Hashtable' is synchronized, whereas 'HashMap' is not. 'HashMap' is also more efficient and flexible than 'Hashtable'.
What is the purpose of the 'volatile' keyword in Java?
The 'volatile' keyword in Java is used to indicate that a variable's value can be changed by multiple threads, and that changes made by one thread should be visible to other threads.
What is the difference between 'ArrayList' and 'LinkedList' in Java?
In Java, 'ArrayList' and 'LinkedList' are both implementations of the 'List' interface, but 'ArrayList' is a resizable array, whereas 'LinkedList' is a doubly-linked list. 'ArrayList' is more efficient for random access, whereas 'LinkedList' is more efficient for insertion and deletion.
What is the purpose of the 'transient' keyword in Java?
The 'transient' keyword in Java is used to indicate that a variable should not be serialized, meaning that its value will not be saved when an object is written to a file or sent over a network.
What is the difference between 'Java' and 'JavaScript'?
Java and JavaScript are two distinct programming languages that are often confused with each other. Java is an object-oriented language used for developing large-scale applications, whereas JavaScript is a scripting language used for client-side scripting on the web.
What is the purpose of the 'assert' statement in Java?
The 'assert' statement in Java is used to validate the correctness of a program's behavior, by checking if a certain condition is true. If the condition is false, the program will throw an 'AssertionError'.
What is the difference between 'JDK' and 'JRE'?
In Java, 'JDK' (Java Development Kit) is a bundle that includes the 'JRE' (Java Runtime Environment), as well as development tools such as the compiler and debugger. The 'JRE' is a subset of the 'JDK' that includes only the runtime environment, and is used to run Java programs.
What is the purpose of the 'ClassLoader' in Java?
The 'ClassLoader' in Java is responsible for loading classes into the Java Virtual Machine (JVM). It is used to dynamically load classes, and to resolve dependencies between classes.
What is the difference between 'static' and 'instance' variables in Java?
In Java, 'static' variables are shared by all instances of a class, whereas 'instance' variables are unique to each instance of a class.
What is the purpose of the 'finalize' method in Java?
The 'finalize' method in Java is a special method that is called by the garbage collector before an object is destroyed. It is used to release system resources such as file handles or database connections.
What is the difference between 'checked' and 'unchecked' exceptions in Java?
In Java, 'checked' exceptions are exceptions that are checked at compile-time, whereas 'unchecked' exceptions are exceptions that are not checked at compile-time. 'Checked' exceptions are typically used for recoverable errors, whereas 'unchecked' exceptions are typically used for programming errors.
What is the purpose of the 'wait' and 'notify' methods in Java?
The 'wait' and 'notify' methods in Java are used for inter-thread communication. The 'wait' method is used to make a thread wait for a certain condition to occur, whereas the 'notify' method is used to notify a waiting thread that the condition has occurred.
What is the difference between 'synchronized' and 'ReentrantLock' in Java?
In Java, 'synchronized' is a built-in keyword that is used to synchronize access to a block of code, whereas 'ReentrantLock' is a class that provides more advanced locking features, such as fairness and interruptibility.
What is the purpose of the 'ThreadLocal' class in Java?
The 'ThreadLocal' class in Java is used to create variables that are unique to each thread. It is used to avoid sharing variables between threads, and to improve performance by reducing synchronization overhead.
What is the difference between 'HashMap' and 'ConcurrentHashMap' in Java?
In Java, 'HashMap' is a non-thread-safe implementation of the 'Map' interface, whereas 'ConcurrentHashMap' is a thread-safe implementation of the 'Map' interface. 'ConcurrentHashMap' is designed for use in multi-threaded environments, and provides better performance and scalability than 'HashMap'.
What is the purpose of the 'Atomic' classes in Java?
The 'Atomic' classes in Java are used to provide thread-safe operations on variables. They are used to update variables in a way that is visible to all threads, and to avoid synchronization overhead.
Write a Java program to find the maximum element in an array
publicclassMain {
publicstaticvoidmain(String[] args) {
int[] array = {
1, 2, 3, 4, 5}
;
intmax= array[0];
for (inti=1;
i < array.length;
i++) {
if (array[i] > max) {
max = array[i];
}
}
System.out.println(max);
}
}