java important questions
java important questions
java important questions
1) What is Java?
Java is the high-level, object-oriented, robust, secure programming language,
platform-independent, high performance, Multithreaded, and portable programming
language. It was developed by James Gosling in June 1991. It can also be known
as the platform as it provides its own JRE and API.
1. Class(Method) Area: Class Area stores per-class structures such as the runtime
constant pool, field, method data, and the code for methods.
2. Heap: It is the runtime data area in which the memory is allocated to the objects
3. Stack: Java Stack stores frames. It holds local variables and partial results, and
plays a part in method invocation and return. Each thread has a private JVM stack,
created at the same time as the thread. A new frame is created each time a method
is invoked. A frame is destroyed when its method invocation completes.
4. Program Counter Register: PC (program counter) register contains the address of
the Java virtual machine instruction currently being executed.
5. Native Method Stack: It contains all the native methods used in the application.
8) What is classloader?
Classloader is a subsystem of JVM which is used to load class files. Whenever we run the
java program, it is loaded first by the classloader. There are three built-in classloaders in
Java.
1. Bootstrap ClassLoader
2. Extension ClassLoader
3. System/Application ClassLoader
run it by java A
12) What if I write static public void instead of public static void?
The program compiles and runs correctly because the order of specifiers doesn't matter in
Java.
13) What is the default value of the local variables?
The local variables are not initialized to any default value, neither primitives nor object
references.
14) What are the various access specifiers in Java?
In Java, access specifiers are the keywords which are used to define the access scope of the
method, class, or a variable. In Java, there are four access specifiers given below.
o Public The classes, methods, or variables which are defined as public, can be
accessed by any class or method.
o Protected Protected can be accessed by the class of the same package, or by the
sub-class of this class, or within the same class.
o Default Default are accessible within the package only. By default, all the classes,
methods, and variables are of default scope.
o Private The private class, methods, or variables defined as private can be accessed
within the class only.
For example, In the class simulating the collection of the students in a college, the name of
the college is the common attribute to all the students. Therefore, the college name will be
defined as static.
Explanation
In the first case, 10 and 20 are treated as numbers and added to be 30. Now, their sum 30
is treated as the string and concatenated with the string Javatpoint. Therefore, the output
will be 30Javatpoint.
200Javatpoint
Javatpoint200
Explanation
In the first case, The numbers 10 and 20 will be multiplied first and then the result 200 is
treated as the string and concatenated with the string Javatpoint to produce the
output 200Javatpoint.
In the second case, The numbers 10 and 20 will be multiplied first to be 200 because the
precedence of the multiplication is higher than addition. The result 200 will be treated as
the string and concatenated with the string Javatpointto produce the output
as Javatpoint200.
The above code will give the compile-time error because the for loop demands a boolean
value in the second part and we are providing an integer value, i.e., 0.
o Default Constructor: default constructor is the one which does not accept any
value. The default constructor is mainly used to initialize the instance variable with
the default values. A default constructor is invoked implicitly by the compiler if
there is no constructor defined in the class.
o Parameterized Constructor: The parameterized constructor is the one which can
initialize the instance variables with the given values. In other words, we can say
that the constructors which can accept the arguments are called parameterized
constructors.
24) What is the purpose of a default constructor?
The purpose of the default constructor is to assign the default value to the objects. The java
compiler creates a default constructor implicitly if there is no constructor in the class.
1. class Student3{
2. int id;
3. String name;
4.
5. void display(){System.out.println(id+" "+name);}
6.
7. public static void main(String args[]){
8. Student3 s1=new Student3();
9. Student3 s2=new Student3();
10. s1.display();
11. s2.display();
12. }
13. }
Test it Now
Output:
0 null
0 null
Explanation: In the above class, you are not creating any constructor, so compiler
provides you a default constructor. Here 0 and null values are provided by default
constructor.
In the above program, The constructor Test is overloaded with another constructor. In the
first call to the constructor, The constructor with one argument is called, and i will be
initialized with the value 10. However, In the second call to the constructor, The constructor
with the 2 arguments is called, and i will be initialized with the value 15.
There are many ways to copy the values of one object into another in java. They are:
o By constructor
o By assigning the values of one object into another
o By clone() method of Object classIn this example, we are going to copy the values
of one object into another using java constructor.
1. //Java program to initialize the values from one object to another
2. class Student6{
3. int id;
4. String name;
5. //constructor to initialize integer and string
6. Student6(int i,String n){
7. id = i;
8. name = n;
9. }
10. //constructor to initialize another object
11. Student6(Student6 s){
12. id = s.id;
13. name =s.name;
14. }
15. void display(){System.out.println(id+" "+name);}
16.
17. public static void main(String args[]){
18. Student6 s1 = new Student6(111,"Karan");
19. Student6 s2 = new Student6(s1);
20. s1.display();
21. s2.display();
22. }
23. }
Test it Now
Output:
111 Karan
111 Karan
A constructor must not have a return type. A method must have a return
type.
The constructor name must be same as the The method name may or may
classname. not be same as class name.
a = 10 b = 15
Here, the data type of the variables a and b, i.e., byte gets promoted to int, and the first
parameterized constructor with the two integer parameters is called.
There is a compiler error in the program because there is a call to the default constructor
in the main method which is not present in the class. However, there is only one
parameterized constructor in the class Test. Therefore, no default constructor is invoked by
the constructor implicitly.
36) What are the restrictions that are applied to the Java static
methods?
Two main restrictions are applied to the static methods.
o The static method can not use non-static data member or call the non-static method
directly.
o this and super cannot be used in static context as they are non-static.
37) Why is the main method static?
Because the object is not required to call the static method. If we make the main method
non-static, JVM will have to create its object first and then call main() method which will
lead to the extra memory allocation.
1. class A2{
2. static{System.out.println("static block is invoked");}
3. public static void main(String args[]){
4. System.out.println("Hello main");
5. }
6. }
Test it Now
41) What if the static modifier is removed from the signature of the
main method?
Program compiles. However, at runtime, It throws an error "NoSuchMethodError."
2)We don't need to create the objects to call the static The object is required to call the
methods. instance methods.
3)Non-static (instance) members cannot be accessed in the Static and non-static variables both
static context (static method, static block, and static nested can be accessed in instance
class) directly. methods.
4)For example: public static int cube(int n){ return n*n*n;} For example: public void msg(){...}.
Output
hi !! I am good !!
i = 102
Output
Output
10
o this is a final variable. Therefore, this cannot be assigned to any new value whereas
the current class object might not be final and can be changed.
o this can be used in the synchronized block.
More Details.
o Inheritance provides code reusability. The derived class does not need to redefine
the method of base class unless it needs to provide the specific implementation of
the method.
o Runtime polymorphism cannot be achieved without using inheritance.
o We can simulate the inheritance of classes with the real-time objects which makes
OOPs more realistic.
o Inheritance provides data hiding. The base class can hide some data from the
derived class by making it private.
o Method overriding cannot be achieved without inheritance. By method overriding, we
can give a specific implementation of some basic method contained by the base
class.
Since the compile-time errors are better than runtime errors, Java renders compile-time
error if you inherit 2 classes. So whether you have the same method or different, there will
be a compile time error.
1. class A{
2. void msg(){System.out.println("Hello");}
3. }
4. class B{
5. void msg(){System.out.println("Welcome");}
6. }
7. class C extends A,B{//suppose if it were
8.
9. Public Static void main(String args[]){
10. C obj=new C();
11. obj.msg();//Now which msg() method would be invoked?
12. }
13. }
Test it Now
Address.java
Employee.java
Output
111 varun
gzb UP india
112 arun
gno UP india
Output:
animal is created
dog is created
More Details.
Output
o super can be used to refer to the immediate parent class instance variable.
o super can be used to invoke the immediate parent class method.
o super() can be used to invoke immediate parent class constructor.
63) What are the differences between this and super keyword?
There are the following differences between this and super keyword.
o The super keyword always points to the parent class contexts whereas this keyword
always points to the current class context.
o The super keyword is primarily used for initializing the base class variables within the
derived class constructor whereas this keyword primarily used to differentiate
between local and instance variables when passed in the class constructor.
o The super and this must be the first statement inside constructor otherwise the
compiler will throw an error.
Output
Explanation
The super() is implicitly invoked by the compiler if no super() or this() is included explicitly
within the derived class constructor. Therefore, in this case, The Person class constructor is
called first and then the Employee class constructor is called.
Example:
Output:
1. class Adder{
2. static int add(int a,int b){return a+b;}
3. static double add(int a,int b){return a+b;}
4. }
5. class TestOverloading3{
6. public static void main(String[] args){
7. System.out.println(Adder.add(11,11));//ambiguity
8. }}
Test it Now
Output:
Compile Time Error: method add(int, int) is already defined in class Adder
More Details.
Output
o The method must have the same name as in the parent class.
o The method must have the same signature as in the parent class.
o Two classes must have an IS-A relationship between them.
1) Method overloading increases the Method overriding provides the specific implementation of the
readability of the program. method that is already provided by its superclass.
2) Method overloading occurs within Method overriding occurs in two classes that have IS-A
the class. relationship between them.
3) In this case, the parameters must In this case, the parameters must be the same.
be different.
o If the superclass method does not declare an exception, subclass overridden method
cannot declare the checked exception, but it can declare the unchecked exception.
o If the superclass method declares an exception, subclass overridden method can
declare same, subclass exception or no exception but cannot declare parent
exception.
86) What is the output of the following Java program?
1. class Base
2. {
3. void method(int a)
4. {
5. System.out.println("Base class method called with integer a = "+a);
6. }
7.
8. void method(double d)
9. {
10. System.out.println("Base class method called with double d ="+d);
11. }
12. }
13.
14. class Derived extends Base
15. {
16. @Override
17. void method(double d)
18. {
19. System.out.println("Derived class method called with double d ="+d);
20. }
21. }
22.
23. public class Main
24. {
25. public static void main(String[] args)
26. {
27. new Derived().method(10);
28. }
29. }
Output
Explanation
The method() is overloaded in class Base whereas it is derived in class Derived with the
double type as the parameter. In the method call, the integer is passed.
once assigned to a value, can never be changed after that. The final variable which is not
assigned to any value can only be assigned through the class constructor.
1. class Bike9{
2. final int speedlimit=90;//final variable
3. void run(){
4. speedlimit=400;
5. }
6. public static void main(String args[]){
7. Bike9 obj=new Bike9();
8. obj.run();
9. }
10. }//end of class
Test it Now
1. class Bike{
2. final void run(){System.out.println("running");}
3. }
4.
5. class Honda extends Bike{
6. void run(){System.out.println("running safely with 100kmph");}
7.
8. public static void main(String args[]){
9. Honda honda= new Honda();
10. honda.run();
11. }
12. }
Test it Now
1. class Student{
2. int id;
3. String name;
4. final String PAN_CARD_NUMBER;
5. ...
6. }
92) Can we initialize the final blank variable?
Yes, if it is not static, we can initialize it in the constructor. If it is static blank final variable,
it can be initialized only in the static block.
Output
20
Explanation
Since i is the blank final variable. It can be initialized only once. We have initialized it to 20.
Therefore, 20 will be printed.
Output
Derived.java:11: error: getInfo() in Derived cannot override getInfo()
in Base
protected final void getInfo()
^
overridden method is final
1 error
Explanation
The getDetails() method is final; therefore it can not be overridden in the subclass.
98) What is the difference between the final method and abstract
method?
The main difference between the final method and abstract method is that the abstract
method cannot be final as we need to override them in the subclass to give its definition.
1. class Bike{
2. void run(){System.out.println("running");}
3. }
4. class Splendor extends Bike{
5. void run(){System.out.println("running safely with 60km");}
6. public static void main(String args[]){
7. Bike b = new Splendor();//upcasting
8. b.run();
9. }
10. }
Test it Now
Output:
More details.
1. class Bike{
2. int speedlimit=90;
3. }
4. class Honda3 extends Bike{
5. int speedlimit=150;
6. public static void main(String args[]){
7. Bike obj=new Honda3();
8. System.out.println(obj.speedlimit);//90
9. }
Test it Now
Output:
90
Static Binding
1. class Dog{
2. private void eat(){System.out.println("dog is eating...");}
3.
4. public static void main(String args[]){
5. Dog d1=new Dog();
6. d1.eat();
7. }
8. }
Dynamic Binding
1. class Animal{
2. void eat(){System.out.println("animal is eating...");}
3. }
4.
5. class Dog extends Animal{
6. void eat(){System.out.println("dog is eating...");}
7.
8. public static void main(String args[]){
9. Animal a=new Dog();
10. a.eat();
11. }
12. }
More details.
Output
Test:print() called
Explanation
Output
true
An object of subclass type is also a type of parent class. For example, if Dog extends Animal
then object of Dog can be referred by either Dog or Animal class.
o Abstract Class
o Interface
More details.
Output
running safely
More details.
Yes, the program is written correctly. The Main class provides the definition of abstract
method multiply declared in abstract class Calculation. The output of the program will be:
Output
384
110) Can you use abstract and final both with a method?
No, because we need to override the abstract method to provide its implementation,
whereas we can't override the final method.
An abstract class can have a method body (non- The interface has only abstract methods.
abstract methods).
An abstract class can have instance variables. An interface cannot have instance variables.
An abstract class can have the constructor. The interface cannot have the constructor.
An abstract class can have static methods. The interface cannot have static methods.
You can extend one abstract class. You can implement multiple interfaces.
The abstract class can provide the The Interface can't provide the
implementation of the interface. implementation of the abstract class.
The abstract keyword is used to declare an The interface keyword is used to declare
abstract class. an interface.
An abstract class can extend another Java class An interface can extend another Java
and implement multiple Java interfaces. interface only.
An abstract class can be extended using An interface class can be implemented
keyword extends using keyword implements
A Java abstract class can have class members Members of a Java interface are public by
like private, protected, etc. default.
Example: Example:
public abstract class Shape{ public interface Drawable{
public abstract void draw(); void draw();
} }
1. //save as Simple.java
2. package mypack;
3. public class Simple{
4. public static void main(String args[]){
5. System.out.println("Welcome to package");
6. }
7. }
122) What are the advantages of defining packages in Java?
By defining packages, we can avoid the name conflicts between the same class names
defined in different packages. Packages also enable the developer to organize the similar
classes more effectively. For example, one can clearly understand that the classes present
in java.io package are used to perform io related operations.
124) Can I import same package/class twice? Will the JVM load
the package twice at runtime?
One can import the same package or the same class multiple times. Neither compiler nor
JVM complains about it. However, the JVM will internally load the class only once no matter
how many times you import the same class.
More details.
o Checked Exception: Checked exceptions are the one which are checked at compile-
time. For example, SQLException, ClassNotFoundException, etc.
o Unchecked Exception: Unchecked exceptions are the one which are handled at
runtime because they can not be checked at compile-time. For example,
ArithmaticException, NullPointerException, ArrayIndexOutOfBoundsException, etc.
o Error: Error cause the program to exit since they are not recoverable. For Example,
OutOfMemoryError, AssertionError, etc.
127) What is Exception Handling?
Exception Handling is a mechanism that is used to handle runtime errors. It is used
primarily to handle checked exceptions. Exception handling maintains the normal flow of the
program. There are mainly two types of exceptions: checked and unchecked. Here, the
error is considered as the unchecked exception.
More details.
Output:
Exception in thread main java.lang.ArithmeticException:/ by zero
rest of the code...
Output
Explanation
1) The throw keyword is used to The throws keyword is used to declare an exception.
throw an exception explicitly.
2) The checked exceptions cannot be The checked exception can be propagated with
propagated with throw only. throws
4) The throw keyword is used within The throws keyword is used with the method
the method. signature.
5) You cannot throw multiple You can declare multiple exceptions, e.g., public void
exceptions. method()throws IOException, SQLException.
More details.
Output
Output
Explanation
The object of Calculation is thrown from the try block which is caught in the catch block. The
add() of Calculation class is called with the integer values 10 and 20 by using the object of
this class. Therefore there sum 30 is printed. The object of the Main class can only be
thrown in the case when the type of the object is throwable. To do so, we need to extend
the throwable class.
1. class Testimmutablestring{
2. public static void main(String args[]){
3. String s="Sachin";
4. s.concat(" Tendulkar");//concat() method appends the string at the end
5. System.out.println(s);//will print Sachin because strings are immutable objects
6. }
7. }
Test it Now
Output:
Sachin
1. String s="welcome";
Each time you create a string literal, the JVM checks the "string constant pool" first. If the
string already exists in the pool, a reference to the pooled instance is returned. If the string
doesn't exist in the pool, a new string instance is created and placed in the pool. String
objects are stored in a special memory area known as the string constant pool For
example:
1. String s1="Welcome";
2. String s2="Welcome";//It doesn't create a new instance
2) By new keyword
1. String s=new String("Welcome");//creates two objects and one reference variable
In such case, JVM will create a new string object in normal (non-pool) heap memory, and
the literal "Welcome" will be placed in the constant string pool. The variable s will refer to
the object in a heap (non-pool).
153) How many objects will be created in the following code?
1. String s1="Welcome";
2. String s2="Welcome";
3. String s3="Welcome";
Only one object will be created using the above code because strings in Java are immutable.
Output
a equals b
Explanation
The operator == also check whether the references of the two string objects are equal or
not. Although both of the strings contain the same content, their references are not equal
because both are created by different ways(Constructor and String literal) therefore, a ==
b is unequal. On the other hand, the equal() method always check for the content. Since
their content is equal hence, a equals b is printed.
Output
true
Explanation
The intern method returns the String object reference from the string pool. In this case, s1
is created by using string literal whereas, s2 is created by using the String pool. However,
s2 is changed to the reference of s1, and the operator == returns true.
2) The String is slow and consumes more The StringBuffer is fast and
memory when you concat too many strings consumes less memory when
because every time it creates a new instance. youcancat strings.
1. class Student{
2. int rollno;
3. String name;
4. String city;
5.
6. Student(int rollno, String name, String city){
7. this.rollno=rollno;
8. this.name=name;
9. this.city=city;
10. }
11.
12. public String toString(){//overriding the toString() method
13. return rollno+" "+name+" "+city;
14. }
15. public static void main(String args[]){
16. Student s1=new Student(101,"Raj","lucknow");
17. Student s2=new Student(102,"Vijay","ghaziabad");
18.
19. System.out.println(s1);//compiler writes here s1.toString()
20. System.out.println(s2);//compiler writes here s2.toString()
21. }
22. }
Output:
8. }
9. }
Output
Output
true
false
false
false
true
Explanation
line 4 prints true since the second character of string is s, line 5 prints false since the
second character is not s, line 6 prints false since there are more than 3 characters in the
string, line 7 prints false since there are more than 2 characters in the string, and it
contains more than 2 characters as well, line 8 prints true since the third character of the
string is s.
o Nested classes represent a special type of relationship that is it can access all the
members (data members and methods) of the outer class including private.
o Nested classes are used to develop a more readable and maintainable code because
it logically groups classes and interfaces in one place only.
o Code Optimization: It requires less code to write.
166) What is a nested class?
The nested class can be defined as the class which is defined inside another class or
interface. We use the nested class to logically group classes and interfaces in one place so
that it can be more readable and maintainable. A nested class can access all the data
members of the outer class including private data members and methods. The syntax of the
nested class is defined below.
1. class Java_Outer_class{
2. //code
3. class Java_Nested_class{
4. //code
5. }
6. }
7.
There are two types of nested classes, static nested class, and non-static nested class. The
non-static nested class can also be called as inner-class
167) What are the types of inner classes (non-static nested class)
used in Java?
There are mainly three types of inner classes used in Java.
Type Description
Anonymous Inner A class created for implementing an interface or extending class. Its
Class name is decided by the java compiler.
No, the local variable must be constant if you want to access it in the local inner class.
1) By nulling a reference:
1. Employee e=new Employee();
2. e=null;
192) In Java, How many ways you can take input from the
console?
In Java, there are three ways by using which, we can take input from the console.
o Using BufferedReader class: we can take input from the console by wrapping
System.in into an InputStreamReader and passing it into the BufferedReader. It
provides an efficient reading as the input gets buffered. Consider the following
example.
1. import java.io.BufferedReader;
2. import java.io.IOException;
3. import java.io.InputStreamReader;
4. public class Person
5. {
6. public static void main(String[] args) throws IOException
7. {
8. System.out.println("Enter the name of the person");
9. BufferedReader reader = new BufferedReader(new InputStreamReader(Syste
m.in));
10. String name = reader.readLine();
11. System.out.println(name);
12. }
13. }
o Using Scanner class: The Java Scanner class breaks the input into tokens using a
delimiter that is whitespace by default. It provides many methods to read and parse
various primitive values. Java Scanner class is widely used to parse text for string
and primitive types using a regular expression. Java Scanner class extends Object
class and implements Iterator and Closeable interfaces. Consider the following
example.
1. import java.util.*;
2. public class ScannerClassExample2 {
3. public static void main(String args[]){
4. String str = "Hello/This is JavaTpoint/My name is Abhishek.";
5. //Create scanner with the specified String Object
6. Scanner scanner = new Scanner(str);
7. System.out.println("Boolean Result: "+scanner.hasNextBoolean());
8. //Change the delimiter of this scanner
9. scanner.useDelimiter("/");
10. //Printing the tokenized Strings
11. System.out.println("---Tokenizes String---");
12. while(scanner.hasNext()){
13. System.out.println(scanner.next());
14. }
15. //Display the new delimiter
16. System.out.println("Delimiter used: " +scanner.delimiter());
17. scanner.close();
18. }
19. }
20.
o Using Console class: The Java Console class is used to get input from the console.
It provides methods to read texts and passwords. If you read the password using the
Console class, it will not be displayed to the user. The java.io.Console class is
attached to the system console internally. The Console class is introduced since 1.5.
Consider the following example.
1. import java.io.Console;
2. class ReadStringTest{
3. public static void main(String args[]){
4. Console c=System.console();
5. System.out.println("Enter your name: ");
6. String n=c.readLine();
7. System.out.println("Welcome "+n);
8. }
9. }