Basic Java Interview Questions
Basic Java Interview Questions
****************************************
********************************************
JVM (Java Virtual Machine): It is an abstract machine. It is a specification that provides run-time
environment in which java bytecode can be executed. It follows three notations:
Specification: It is a document that describes the implementation of the Java virtual machine. It is
provided by Sun and other companies.
Runtime Instance: An instance of JVM is created whenever you write a java command on the command
prompt and run the class.
JRE (Java Runtime Environment) : JRE refers to a runtime environment in which java bytecode can be
executed. It implements the JVM (Java Virtual Machine) and provides all the class libraries and other
support files that JVM uses at runtime. So JRE is a software package that contains what is required to run
a Java program. Basically, it’s an implementation of the JVM which physically exists.
JDK(Java Development Kit) : It is the tool necessary to compile, document and package Java programs.
The JDK completely includes JRE which contains tools for Java programmers. The Java Development Kit
is provided free of charge. Along with JRE, it includes an interpreter/loader, a compiler (javac), an
archiver (jar), a documentation generator (javadoc) and other tools needed in Java development. In
short, it contains JRE + development tools.
Refer to this below image and understand how exactly these components reside:
public : Public is an access modifier, which is used to specify who can access this method. Public means
that this Method will be accessible by any Class.
static : It is a keyword in java which identifies it is class based i.e it can be accessed without creating the
instance of a Class.
void : It is the return type of the method. Void defines the method which will not return any value.
main: It is the name of the method which is searched by JVM as a starting point for an application with a
particular signature only. It is the method where the main execution occurs.
Platform independent practically means “write once run anywhere”. Java is called so because of its byte
codes which can run on any system irrespective of its underlying operating system.
Java is not 100% Object-oriented because it makes use of eight primitive datatypes such as boolean,
byte, char, int, float, double, long, short which are not objects.
Wrapper classes converts the java primitives into the reference types (objects). Every primitive data type
has a class dedicated to it. These are known as wrapper classes because they “wrap” the primitive data
type into an object of that class. Refer to the below image which displays different primitive type,
wrapper class and constructor argument.
In Java, constructor refers to a block of code which is used to initialize an object. It must have the same
name as that of the class. Also, it has no return type and it is automatically called when an object is
created.
Default constructor
Parameterized constructor
Q7. What is singleton class and how can we make a class singleton?
Singleton class is a class whose only one instance can be created at any given time, in one JVM. A class
can be made singleton by making its constructor private.
If an element is inserted into the Array List, it increases its Array size by 50%. Vector defaults to
doubling size of its array.
Array List does not define the increment size. Vector defines the increment size.
Array List can only use Iterator for traversing an Array List. Except Hashtable, Vector is the only
other class which uses both Enumeration and Iterator.
Equals() method is defined in Object class in Java and used for checking equality of two objects defined
by business logic.
“==” or equality operator in Java is a binary operator provided by Java programming language and used
to compare primitives and objects. public boolean equals(Object o) is the method provided by the
Object class. The default implementation uses == operator to compare two objects. For example:
method can be overridden like String class. equals() method is used to compare the values of two
objects.
if(Str1 == str2)
else
else
if(Str1.equals(str2))
else
}}
Q10. What are the differences between Heap and Stack Memory?
Memory Management
Heap memory lives from the start till the end of application execution.
UsageStack memory only contains local primitive and reference variables to objects in heap space.
Compile time polymorphism is method overloading whereas Runtime time polymorphism is done using
inheritance and interface.
In Java, runtime polymorphism or dynamic method dispatch is a process in which a call to an overridden
method is resolved at runtime rather than at compile-time. In this process, an overridden method is
called through the reference variable of a superclass. Let’s take a look at the example below to
understand it better.
class Car {
void run()
System.out.println(“car is running”);
void run()
{
Car b= new Audi(); //upcasting
b.run();
An abstract class can provide complete, default code and/or just the details that have to be overridden.
An interface cannot provide any code at all,just the signature.
In case of abstract class, a class may extend only one abstract class. A Class may implement several
interfaces.
An abstract class can have non-abstract methods. All methods of an Interface are abstract.
An abstract class can have instance variables. An Interface cannot have instance variables
An abstract class can have any visibility: public, private, protected. An Interface visibility must be
public (or) none.
If we add a new method to an abstract class then we have the option of providing default
implementation and therefore all the existing code might work properly If we add a new method to an
Interface then we have to track down all the implementations of the interface and define
implementation for the new method
Abstract classes are fast Interfaces are slow as it requires extra indirection to find corresponding method
in the actual class
Method Overloading :
In Method Overloading, Methods of the same class shares the same name but each method must have
different number of parameters or parameters having different types and order.
class Adder {
return a+b;
return a+b;
System.out.println(Adder.add(11,11));
System.out.println(Adder.add(12.3,12.6));
}}
Method Overriding:
In Method Overriding, sub class have the same method with same name and exactly the same number
and type of parameters and same return type as a super class.
class Car {
void run(){
System.out.println(“car is running”);
void run()
b.run();
You cannot override a private or static method in Java. If you create a similar method with same return
type and same method arguments in child class then it will hide the super class method; this is known as
method hiding. Similarly, you cannot override a private method in sub class because it’s not accessible
there. What you can do is create another private method with the same name in the child class. Let’s
take a look at the example below to understand it better.
class Base {
obj1.display();
obj1.print();
MultipleInheritance - Java Interview Questions - EdurekaIf a child class inherits the property from
multiple classes is known as multiple inheritance. Java does not allow to extend multiple classes.
The problem with multiple inheritance is that if multiple parent classes have a same method name, then
at runtime it becomes difficult for the compiler to decide which method to execute from the child class.
Therefore, Java doesn’t support multiple inheritance. The problem is commonly referred as Diamond
Problem.
Q7. What is association?
Association is a relationship where all object have their own lifecycle and there is no owner. Let’s take
an example of Teacher and Student. Multiple students can associate with a single teacher and a single
student can associate with multiple teachers but there is no ownership between the objects and both
have their own lifecycle. These relationship can be one to one, One to many, many to one and many to
many.
Aggregation is a specialized form of Association where all object have their own lifecycle but there is
ownership and child object can not belongs to another parent object. Let’s take an example of
Department and teacher. A single teacher can not belongs to multiple departments, but if we delete the
department teacher object will not destroy.
Composition is again specialized form of Aggregation and we can call this as a “death” relationship. It is a
strong type of Aggregation. Child object dose not have their lifecycle and if parent object deletes all child
object will also be deleted. Let’s take again an example of relationship between House and rooms.
House can contain multiple rooms there is no independent life of room and any room can not belongs to
two different house if we delete the house room will automatically delete.
Singleton is created with double checked locking as before Java 5 acts as an broker and it’s been possible
to have multiple instances of Singleton when multiple threads creates an instance of Singleton at the
same time. Java 5 made it easy to create thread-safe Singleton using Enum. Using a volatile variable is
essential for the same.
Storage area is Heap and modified easily. Storage is Heap and can be modified.
Java doesn’t support multiple inheritance. Because we cannot use different methods in one class it
creates an ambiguity.
Example:
class Intellipaat1
void test()
system.out.println("test() method");
}class Intellipaat2
void test()
system.out.println("test() method");
}Multiple inheritance
class C extends Intellipaat1, Intellipaat2
………………………………………….
…………………………………………..
So which test() method C class will take. As Intellipaat1 & Intellipaat2 class test () methods are different,
So here we would face ambiguity.
18. Are constructors inherited? Can a subclass call the parent's class constructor?
We cannot inherit a constructor. We create an instance of a subclass using a constructor of one of its
superclass. Because override the superclass constructor is not our wish so that, we override a superclass
constructor, then we destroy the encapsulation abilities of the language.
****************************************************
*****************************************************
What is Collection ? What is a Collections Framework ? What are the benefits of Java Collections
Framework ?
Collection : A collection (also called as container) is an object that groups multiple elements into a single
unit.
Collections Framework : Collections framework provides unified architecture for manipulating and
representing collections.
Root interface in collection hierarchy is Collection interface . Few interviewer may argue that
Collection interface extends Iterable interface. So iterable should be the root interface. But you should
reply iterable interface present in java.lang package not in java.util package .It is clearly mentioned in
Oracle Collection docs , that Collection interface is a member of the Java Collections framework. For
Iterable interface Oracle doc , iterable interface is not mentioned as a part of the Java Collections
framework .So if the question includes collection hierarchy , then you should answer the question as
Collection interface (which is found in java.util package).
Collection is an interface while Collections is a java class , both are present in java.util package and part
of java collections framework.
Stack, Properties , Vector and Hashtable can be used in multi threaded environment because they are
synchronized classes (or thread-safe).
Set contain only unique elements while List can contain duplicate elements.
Set is unordered while List is ordered . List maintains the order in which the objects are added .
Q7 What is the difference between Map and Set ?
Map object has unique keys each containing some value, while Set contain only unique values.
Q9 What is an iterator ?
Iterator is an interface . It is found in java.util package. It provides methods to iterate over any
Collection.
The main difference between Iterator and Enumeration is that Iterator has remove() method while
Enumeration doesn't.
Hence , using Iterator we can manipulate objects by adding and removing the objects from the
collections. Enumeration behaves like a read only interface as it can only traverse the objects and fetch
it .
Q12 Which methods you need to override to use any object as key in HashMap ?
To use any object as key in HashMap , it needs to implement equals() and hashCode() method .
Queue is a data structure which is based on FIFO ( first in first out ) property . An example of Queue in
real world is buying movie tickets in the multiplex or cinema theaters.
Stack is a data structure which is based on LIFO (last in first out) property . An example of Stack in real
world is insertion or removal of CD from the CD case.
There is a built in reverse method in Collections class . reverse(List list) accepts list as parameter.
Collections.reverse(listobject);
Arrays class of java.util package contains the method asList() which accepts the array as parameter.
So,
It is one of the frequently asked collection interview question , the main differences are
Vector is synchronized while ArrayList is not . Vector is slow while ArrayList is fast . Every time when
needed, Vector increases the capacity twice of its initial size while ArrayList increases its ArraySize by
50%. find detailed explanation ArrayList vs Vector .
It is one of the most popular collections interview question for java developer . Make sure you go
through this once before appearing for the interview .
a. HashMap allows one null key and any number of null values while Hashtable does not allow null keys
and null values.
Both poll() and remove() method is used to remove head object of the Queue. The main difference lies
when the Queue is empty().
If Queue is empty then poll() method will return null . While in similar case , remove() method will throw
NoSuchElementException .
peek() method retrieves but does not remove the head of the Queue. If queue is empty then peek()
method also returns null.
Using Iterator we can traverse the list of objects in forward direction . But ListIterator can traverse the
collection in both directions that is forward as well as backward.
This question checks whether student understand the concept of static and dynamic array. Some main
differences between Array and ArrayList are :
b. Array can contain primitive data types while ArrayList can not contain primitive data type
a. HashSet maintains the inserted elements in random order while TreeSet maintains elements in the
sorted order
b. HashSet can store null object while TreeSet can not store null object.
Q22 Write java code showing insertion,deletion and retrieval of HashMap object ?
Do it yourself (DIY) , if found any difficulty or doubts then please mention in the comments.
This is also one of the most popular java collections interview question . Make sure this question is in
your to do list before appearing for the interview .
b. HashMap can have one null key and any number of null values while ConcurrentHashMap does not
allow null keys and null values .
a. LinkedList is the doubly linked list implementation of list interface , while , ArrayList is the resizable
array implementation of list interface.
b. LinkedList can be traversed in the reverse direction using descendingIterator() method provided by
the Java Api developers , while , we need to implement our own method to traverse ArrayList in the
reverse direction . find the detailed explanation here
27 What are Comparable and Comparator interfaces ? List the difference between them ?
We already explained what is comparable and comparator interface in detail along with examples here,
Comparable vs Comparator in Java
Q28 Why Map interface does not extend the Collection interface in Java Collections Framework ?
One liner answer : Map interface is not compatible with the Collection interface.
Explanation : Since Map requires key as well as value , for example , if we want to add key-value pair
then we will use put(Object key , Object value) . So there are two parameters required to add element
to the HashMap object . In Collection interface add(Object o) has only one parameter.
The other reasons are Map supports valueSet , keySet as well as other appropriate methods which have
just different views from the Collection interface.
Q29 When to use ArrayList and when to use LinkedList in application?
ArrayList has constant time search operation O(1) .Hence, ArrayList is preferred when there are more
get() or search operation .
Insertion , Deletion operations take constant time O(1) for LinkedList. Hence, LinkedList is preferred
when there are more insertions or deletions involved in the application.
Q30 Write the code for iterating the list in different ways in java ?
a. using Iterator
Coding part : Do it yourself (DIY) , in case of any doubts or difficulty please mention in the comments .
Advance Level (3+ yrs): Java Collections Interview Questions and Answers
This is one of the popular interview question . HashSet internally uses HashMap to maintain the
uniqueness of elements.
Q33 How HashMap works in Java ?
We are repeating this question , as it is one of the most important question for java developer.HashMap
works on the principle of Hashing
BlockingQueue implements the java.util.Queue interface . BlockingQueue supports operations that wait
for the queue to become non-empty when retrieving an element , and wait for space to become
available in the queue when storing an element .
BlockingQueue implementations are thread-safe and can also be used in inter-thread communications.
TreeMap internally uses Red-Black tree to sort the elements in natural order.
**********************************
INTERFACE IN JAVA
****************************
Interface in Java
Interface
Example of Interface
Why multiple inheritance is supported in Interface while it is not supported in case of class.
Marker Interface
Nested Interface
An interface in java is a blueprint of a class. It has static constants and abstract methods.
The interface in java is a mechanism to achieve abstraction. There can be only abstract methods in the
java interface not method body. It is used to achieve abstraction and multiple inheritance in Java.
There are mainly three reasons to use interface. They are given below.
Since Java 8, interface can have default and static methods which is discussed later.
Internal addition by compiler
The java compiler adds public and abstract keywords before the interface method. More, it adds public,
static and final keywords before data members.
In other words, Interface fields are public, static and final by default, and methods are public and
abstract.
In this example, Printable interface has only one method, its implementation is provided in the A class.
interface printable{
void print();
obj.print();
In this example, Drawable interface has only one method. Its implementation is provided by Rectangle
and Circle classes. In real scenario, interface is defined by someone but implementation is provided by
different implementation providers. And, it is used by someone else. The implementation part is hidden
by the user which uses the interface.
File: TestInterface1.java
interface Drawable{
void draw();
class TestInterface1{
Drawable d=new Circle();//In real scenario, object is provided by method e.g. getDrawable()
d.draw();
}}
File: TestInterface2.java
interface Bank{
float rateOfInterest();
class TestInterface2{
System.out.println("ROI: "+b.rateOfInterest());
}}
If a class implements multiple interfaces, or an interface extends multiple interfaces i.e. known as
multiple inheritance.
interface Printable{
void print();
}
interface Showable{
void show();
obj.print();
obj.show();
Multiple inheritance is not supported through class in java but it is possible by interface, why?
As we have explained in the inheritance chapter, multiple inheritance is not supported in case of class
because of ambiguity. But it is supported in case of interface because there is no ambiguity as
implementation is provided by the implementation class. For example:
interface Printable{
void print();
interface Showable{
void print();
obj.print();
Interface inheritance
interface Printable{
void print();
void show();
obj.print();
obj.show();
Since Java 8, we can have method body in interface. But we need to make it default method. Let's see
an example:
File: TestInterfaceDefault.java
interface Drawable{
void draw();
class TestInterfaceDefault{
d.draw();
d.msg();
}}
An interface that have no member is known as marker or tagged interface. For example: Serializable,
Cloneable, Remote etc. They are used to provide some essential information to the JVM so that JVM
may perform some useful operation.
Note: An interface can have another interface i.e. known as nested interface. We will learn it in detail in
the nested classes chapter. For example:
interface printable{
void print();
interface MessagePrintable{
void msg();
}
*****************************************
EXCEPTION HANDLING
************************************************
Exception Handling is a mechanism to handle runtime errors.It is mainly used to handle checked
exceptions.
1)Checked Exception
The classes that extend Throwable class except RuntimeException and Error are known as checked
exceptions e.g.IOException,SQLException etc. Checked exceptions are checked at compile-time.
2)Unchecked Exception
The classes that extend RuntimeException are known as unchecked exceptions e.g.
ArithmeticException,NullPointerException etc. Unchecked exceptions are not checked at compile-time.
Throwable.
It is not necessary that each try block must be followed by a catch block. It should be followed by either
a catch block OR a finally block. And whatever exceptions are likely to be thrown should be declared in
the throws clause of the method.
What is finally block?
Yes, by try block. finally must be followed by either try or catch.more details...
finally block will not be executed if program exits(either by calling System.exit() or by causing a fatal
error that causes the process to abort).more details...
2)checked exceptions can not be propagated with throw only. checked exception can be propagated
with throws.
4)throw is used within the method. throws is used with the method signature.
5)You cannot throw multiple exception You can declare multiple exception e.g. public void
method()throws IOException,SQLException.
more details...
Yes.
Can subclass overriding method declare an exception if parent class method doesn't throw an exception
?
more details...
What is exception propagation ?
Forwarding the exception object to the invoking method is known as exception propagation.
The simple meaning of immutable is unmodifiable or unchangeable. Once string object has been
created, its value can't be changed.
Because java uses the concept of string literal. Suppose there are 5 reference variables,all referes to one
object "sachin".If one reference variable changes the value of the object, it will be affected to all the
reference variables. That is why string objects are immutable in java.
*************************************************
************************************************
import java.util.Scanner;
System.out.println("Enter a number which you want to check whether that is even or odd");
int n = in.nextInt();
if(n%2==0){
}else{
import java.util.Scanner;
System.out.println("Enter a number which you want to check whether that is even or odd");
int n = in.nextInt();
if(n%2==0){
}else{
}
}
Output
Enter a number which you want to check whether that is even or odd
4 is an even number.
Enter a number which you want to check whether that is even or odd
4 is an even number.
*************************************
*********************************************
import java.util.Scanner;
int y = in.nextInt();
x = x+y;
y = x-y;
x = x-y;
import java.util.Scanner;
int x = in.nextInt();
int y = in.nextInt();
y = x-y;
x = x-y;
Output
43
56
43
56
*****************************************************************
package javaTutorial;
import java.util.ArrayList;
import java.util.Scanner;
int p1 = in.nextInt();
System.out.println("Enter one more number till which you want prime number: ");
int p2 = in.nextInt();
int i=2;
for(int p=p1; p<=p2; p++){
i=2;
break;
if(i==10){
prime.add(p);
System.out.print(prime.get(j).toString()+", ");
********************************
PRIME NUMBER
*********************************************
package javaTutorial;
import java.util.ArrayList;
import java.util.Scanner;
int p1 = in.nextInt();
System.out.println("Enter one more number till which you want prime number: ");
int p2 = in.nextInt();
int i=2;
i=2;
break;
if(i==10){
prime.add(p);
System.out.print(prime.get(j).toString()+", ");
}
Output
10
Enter one more number till which you want prime number:
30
10
Enter one more number till which you want prime number:
30
Note- A number is prime if it is not divisible by any other number except itself.
import java.util.Scanner;
public class PrimeNumber{
System.out.println("Enter a number greater than 2 which you want to check whether that number is
prime or not: ");
int p = in.nextInt();
int i=2;
break;
if(i==10){
import java.util.Scanner;
int p = in.nextInt();
int i=2;
break;
if(i==10){
Output
Enter a number greater than 2 which you want to check whether that number is prime or not:
139
Enter a number greater than 2 which you want to check whether that number is prime or not:
139
Entered number 139 is a prime number.
Note- A number is armstrong if the sum of the cubes of digit of number is equal to the number.
import java.util.Scanner;
System.out.println("Enter a number which you want to check whether that is armstrong or not: ");
int n = in.nextInt();
while(a!=0){
r = a%10;
a = a/10;
s = s + r*r*r;
if(s==n){
}else{
import java.util.Scanner;
System.out.println("Enter a number which you want to check whether that is armstrong or not: ");
int n = in.nextInt();
while(a!=0){
r = a%10;
a = a/10;
s = s + r*r*r;
if(s==n){
}else{
}
Output
Enter a number which you want to check whether that is armstrong or not:
407
Enter a number which you want to check whether that is armstrong or not:
407
*************************************************
Floyd Triangle
***************************************************************
23
456
7 8 9 10
————
Code-
import java.util.Scanner;
System.out.println("Enter the number of rows which you want in your Floyd Triangle: ");
int r = in.nextInt();
int n=0;
System.out.print(++n+" ");
System.out.println();
import java.util.Scanner;
int r = in.nextInt();
int n=0;
System.out.print(++n+" ");
System.out.println();
Output
Enter the number of rows which you want in your Floyd Triangle:
23
456
7 8 9 10
11 12 13 14 15
3
4
Enter the number of rows which you want in your Floyd Triangle:
23
456
7 8 9 10
11 12 13 14 15
******************************************************
**************************************************
import java.util.Scanner;
System.out.println("Enter the string which you want to check whether that is palindrome or not: ");
String s = in.next();
String r = "";
for(int i=s.length()-1; i>=0; i--){
r = r+s.charAt(i);
if(r.equals(s)){
}else{
Output
Enter the string which you want to check whether that is palindrome or not:
selenium
Enter the string which you want to check whether that is palindrome or not:
selenium
Binary Search
***************************************
Java
import java.util.Arrays;
import java.util.Scanner;
System.out.println("Enter the size of the array which should be greater than zero else it will throw
InputMismatchException : ");
array[i] = in.nextInt();
int s = in.nextInt();
Arrays.sort(array); //binary search will work on sorted array only so sort first
first=0;
last = size-1;
middle = (first+last)/2;
int i=0;
if(s>array[middle]){
first = middle+1;
}else if(s<array[middle]){
last = middle-1;
}else{
printArray(array);
break;
middle= (first+last)/2;
if(i==size){
printArray(array);
System.out.print("{");
for(int i:a){
System.out.print(i+",");
}
System.out.println("}");
import java.util.Arrays;
import java.util.Scanner;
System.out.println("Enter the size of the array which should be greater than zero else it will throw
InputMismatchException : ");
array[i] = in.nextInt();
int s = in.nextInt();
Arrays.sort(array); //binary search will work on sorted array only so sort first
first=0;
last = size-1;
middle = (first+last)/2;
int i=0;
if(s>array[middle]){
first = middle+1;
}else if(s<array[middle]){
last = middle-1;
}else{
printArray(array);
break;
middle= (first+last)/2;
if(i==size){
printArray(array);
System.out.print("{");
for(int i:a){
System.out.print(i+",");
}
System.out.println("}");
******************************************
Bubble Sort
*******************************************
Java
package SeleniumMakeItEasy;
import org.apache.commons.lang3.ArrayUtils;
int[] a = {2,3,2,5,3,3,6,1,2,5};
int l = a.length;
if(a[j]>a[j+1]){
}else if(a[j]==a[j+1]){
a = ArrayUtils.remove(a,j);
l = a.length;
for(int s: a){
System.out.println(s);
package SeleniumMakeItEasy;
import org.apache.commons.lang3.ArrayUtils;
int[] a = {2,3,2,5,3,3,6,1,2,5};
int l = a.length;
if(a[j]>a[j+1]){
}else if(a[j]==a[j+1]){
a = ArrayUtils.remove(a,j);
l = a.length;
for(int s: a){
System.out.println(s);