Interview Questions
&
Answers

Java Interview questions and Answers

In simple way Meaning of Analogy is “Similarity ” or compassion between one thing and other thing base d on some similarity 

250 + Java Question and Answer

1.what are static blocks and static initalizers in Java ?

Static blocks or static initializers are used to initalize static fields in java. we declare static blocks when we want to intialize static fields in our class. Static blocks gets executed exactly once when the class is loaded . Static blocks are executed even before the constructors are executed.

2) How to call one constructor from the other constructor ?

With in the same class if we want to call one constructor from other we use this() method. Based on the number of parameters we pass appropriate this() method is called.

Restrictions for using this method :

1) this must be the first statement in the constructor

2)we cannot use two this() methods in the constructor

3) What is method overriding in java ?

If we have methods with same signature (same name, same signature, same return type) in super class and subclass then we say subclass method is overridden by superclass.

When to use overriding in java If we want same method with different behaviour in superclass and subclass then we go for overriding. When we call overridden method with subclass reference subclass method is called hiding the superclass method.

4) What is super keyword in java ?

Variables and methods of super class can be overridden in subclass . In case of overriding , a subclass object call its own variables and methods. Subclass cannot access the variables and methods of superclass because the overridden variables or methods hides the methods and variables of super class. But still java provides a way to access super class members even if its members are overridden. Super is used to access superclass variables, methods, constructors.

Super can be used in two forms :

1) First form is for calling super class constructor.

2) Second one is to call super class variables,methods.

Super if present must be the first statement.

5) Difference between method overloading and method overriding in java ?

Method Overloading

  •  Method Overloading occurs with in the same class
  • Since it involves with only one class inheritance is not involved.                                        
  • In overloading return type need not be the same
  • Parameters must be different when we do overloading
  • Static polymorphism can be acheived using method overloading
  • In overloading one method can’t hide the another

Method Overriding​

  • Method Overriding occurs between two classes superclass and subclass
  • Since method overriding occurs between superclass and subclass inheritance is involved.
  • In overriding return type must be same.          
  • Parameters must be same.                              
  • Dynamic polymorphism can be acheived using method overriding
  • In overriding subclass method hides that of the superclass method.

6) Difference between abstract class and interface ?

Interface

  • Interface contains only abstract methods       
  • Access Specifiers for methods in interface must be public
  • Variables defined must be public , static final
  • Multiple Inheritance in java is implemented using interface
  • To implement an interface we use implements keyword

Abstract Class

  • Abstract class can contain abstract methods, concrete methods or both
  • Except private we can have any access specifier for methods in abstract class.
  • Except private variables can have any access specifiers
  • We cannot achieve multiple inheritance using abstract class
  • To implement an interface we use implement keyword

7) Why java is platform independent?

The most unique feature of java is platform independent. In any programming language soruce code is compiled in to executable code . This cannot be run across all platforms. When javac compiles a java program it generates an executable file called .class file.

class file contains byte codes. Byte codes are interpreted only by JVM’s . Since these JVM’s are made available across all platforms by Sun Microsystems, we can execute this byte code in any platform. Byte code generated in windows environment can also be executed in linux environment. This makes java platform independent.

8) What is method overloading in java ?

A class having two or more methods with same name but with different arguments then we say that those methods are overloaded. Static polymorphism is achieved in java using method overloading. Method overloading is used when we want the methods to perform similar tasks but with different inputs or values. When an overloaded method is invoked java first checks the method name, and the number of arguments ,type of arguments; based on this compiler executes this method. Compiler decides which method to call at compile time. By using overloading static polymorphism or static

binding can be achieved in java.

Note : Return type is not part of method signature. we may have methods with different return types but return type alone is not sufficient to call a method in java.

9) What is difference between c++ and Java ?

Interface

  •  Java is platform independent
  • There are no pointers in java
  • There is no operator overloading in java
  • There is garbage collection in java
  • Supports multithreading
  • There are no templates in java
  • There are no global variables in java

Abstract Class

  • C++ is platform dependent.
  • There are pointers in C++
  • C ++ has operator overloading.
  • There is no garbage collection
  • Does’nt support multithreading
  • There are templates in java
  • There are global variables in c++

10) What is bytecode in java ?

JIT compiler stands for Just in time compiler. JIT compiler compiles byte code in to executable code . JIT a part of JVM .JIT cannot convert complete java program in to executable code it converts as and when it is needed during execution.

11) What is bytecode in java ?

When a javac compiler compiler compiles a class it generates .class file. This .class file contains set of instructions called byte code. Byte code is a machine independent language and contains set of instructions which are to be executed only by JVM. JVM can understand this byte codes.

12) Difference between this() and super() in java ?

this() is used to access one constructor from another with in the same class while super() is used to access superclass constructor. Either this() or super() exists it must be the first statement in the constructor.

13) What is a class ?

Classes are fundamental or basic unit in Object Oriented Programming .A class is kind of blueprint or template for objects. Class defines variables, methods. A class tells what type of objects we are creating. For example take Department class tells us we can create department type objects. We can create any number of department objects.

All programming constructs in java reside in class. When JVM starts running it first looks for the class when we compile. Every Java application must have atleast one class and one main method. Class starts with class keyword. A class definition must be saved in class file that has same as class name. File name must end with .java extension.

public class FirstClass

{public static void main(String[] args)

{System.out.println(“My First class”);

}

}

If we see the above class when we compile JVM loads the FirstClass and generates a .class file(FirstClass.class). When we run the program we are running the class and then executes the main method.

14) What is an object ?

An Object is instance of class. A class defines type of object. Each object belongs to some class.Every object contains state and behavior. State is determined by value of attributes and behavior is called method. Objects are alos called as an instance.                                 

To instantiate the class we declare with the class type.

public classFirstClass {public static voidmain(String[] args)

{

FirstClass f=new FirstClass();

System.out.println(“My First class”);

}

}

To instantiate the FirstClass we use this statement

FirstClass f=new FirstClass();

f is used to refer FirstClass object              

15) What is an object ?

It contains the executable body that can be applied to the specific object of the class.

Method includes method name, parameters or arguments and return type and a body of executable code.

Syntax : type methodName(Argument List){

}

ex : public float add(int a, int b, int c) methods can have multiple arguments. Separate with commas when we have multiple arguments.

16) What is encapsulation ?

The process of wrapping or putting up of data in to a single unit class and keeps data safe from misuse is called encapsulation .

Through encapsulation we can hide and protect the data stored in java objects.Java supports encapsulation through access control. There are four access control modifiers in java public , private ,protected and default level.

For example take a car class , In car we have many parts which is not required for driver to know what all it consists inside. He is required to know only about how to start and stop the car. So we can expose what all are required and hide the rest by using encapsulation.

17) Why main() method is public, static and void in java ?

public : “public” is an access specifier which can be used outside the class. When main method is declared public it means it can be used outside class.

static : To call a method we require object. Sometimes it may be required to call a method without the help of object. Then we declare that method as static. JVM calls the main() method without creating object by declaring keyword static. 

void : void return type is used when a method does’nt return any value . main() method does’nt return any value, so main() is declared as void.

Signature : public static void main(String[] args) {

18) Explain about main() method in java ?

Main() method is starting point of execution for all java applications.

public static void main(String[] args) {}

String args[] are array of string objects we need to pass from command line arguments.

Every Java application must have atleast one main method.

19)What is constructor in java ?

A constructor is a special method used to initialize objects in java.

we use constructors to initialize all variables in the class when an object is created. As and when an object is created it is initialized automatically with the help of constructor in java. We have two types of constructors
Default Constructor
Parameterized Constructor
Signature : public classname()
{
}
Signature : public classname(parameters list)
{
}

20) What is difference between length and length() method in java ?

length() : In String class we have length() method which is used to return the number of characters in string.
Ex : String str = “Hello World”;
System.out.println(str.length());
Str.length() will return 11 characters including space.
length : we have length instance variable in arrays which will return the number of values or objects in array.
For example :
String days[]={” Sun”,”Mon”,”wed”,”thu”,”fri”,”sat”};
Will return 6 since the number of values in days array is 6.

21) What is ASCII Code?

ASCII stands for American Standard code for Information Interchange. ASCII character range is 0 to 255. We can’t add more characters to the ASCII Character set. ASCII character set supports only English. That is the reason, if we see C language we can write c language only in English we can’t write in other languages because it uses ASCII code.

22) What is Unicode ?

Unicode is a character set developed by Unicode Consortium. To support all languages in the world Java supports Unicode values. Unicode characters were represented by 16 bits and its character range is 0-65,535.

Java uses ASCII code for all input elements except for Strings,identifiers, and comments. If we want to use Punjabi we can use Punjabi characters for identifiers.We can enter comments in Punjabi

23) What is Unicode ?

Character constant is enclosed in single quotes. String constants are enclosed in double quotes. Character constants are single digit or character. String Constants are collection of characters.

Ex :’2’, ‘A’

Ex : “Hello World”

24) What are constants and how to create constants in java?

Constants are fixed values whose values cannot be changed during the execution of program. We create constants in java using final keyword.

Ex : final int number =10;

final String str=”java-interview –questions”

25) Difference between ‘>>’ and ‘>>>’ operators in java?

>> is a right shift operator shifts all of the bits in a value to the right to a specified number of times.

int a =15;

a= a >> 3;

The above line of code moves 15 three characters right.

>>> is an unsigned shift operator used to shift right. The places which were vacated by shift are filled

with zeroes.

26) what are static blocks and static initalizers in Java ?

Static blocks or static initializers are used to initalize static fields in java. we declare static blocks when we want to intialize static fields in our class. Static blocks gets executed exactly once when the class is loaded . Static blocks are executed even before the constructors are executed.

27)How to call one constructor from the other constructor ?

With in the same class if we want to call one constructor from other we use this() method. Based on the number of parameters we pass appropriate this() method is called. Restrictions for using this method : 1) this must be the first statement in the constructor 2)we cannot use two this() methods in the constructor

28) What is method overriding in java ?

If we have methods with same signature (same name, same signature, same return type) in super class and subclass then we say subclass method is overridden by superclass. When to use overriding in java If we want same method with different behaviour in superclass and subclass then we go for overriding. When we call overridden method with subclass reference subclass method is called hiding the superclass method

29) What is super keyword in java ?

Variables and methods of super class can be overridden in subclass . In case of overriding , a subclass object call its own variables and methods. Subclass cannot access the variables and methods of superclass because the overridden variables or methods hides the methods and variables of super class. But still java provides a way to access super class members even if its members are overridden. Super is used to access superclass variables, methods, constructors. Super can be used in two forms : 1) First form is for calling super class constructor. 2) Second one is to call super class variables,methods. Super if present must be the first statement.

30 Why java is platform independent?

The most unique feature of java is platform independent. In any programming language soruce code is compiled in to executable code . This cannot be run across all platforms. When javac compiles a java program it generates an executable file called .class file. class file contains byte codes. Byte codes are interpreted only by JVM’s . Since these JVM’s are made available across all platforms by Sun Microsystems, we can execute this byte code in any platform. Byte code generated in windows environment can also be executed in linux environment. This makes java platform independent.

31) What is method overloading in java ?

A class having two or more methods with same name but with different arguments then we say that those methods are overloaded. Static polymorphism is achieved in java using method overloading. Method overloading is used when we want the methods to perform similar tasks but with different inputs or values. When an overloaded method is invoked java first checks the method name, and the number of arguments ,type of arguments; based on this compiler executes this method. Compiler decides which method to call at compile time. By using overloading static polymorphism or static binding can be achieved in java. Note : Return type is not part of method signature. we may have methods with different return types but return type alone is not sufficient to call a method in java.

32) What is JIT compiler ?

JIT compiler stands for Just in time compiler. JIT compiler compiles byte code in to executable code . JIT a part of JVM .JIT cannot convert complete java program in to executable code it converts as and when it is needed during execution.

33) What is bytecode in java ?

When a javac compiler compiler compiles a class it generates .class file. This .class file contains set of instructions called byte code. Byte code is a machine independent language and contains set of instructions which are to be executed only by JVM. JVM can understand this byte codes.

34) Difference between this() and super() in java ?

this() is used to access one constructor from another with in the same class while super() is used to access superclass constructor. Either this() or super() exists it must be the first statement in the constructor.

35) What is a class ?

Classes are fundamental or basic unit in Object Oriented Programming .A class is kind of blueprint or template for objects. Class defines variables, methods. A class tells what type of objects we are creating. For example take Department class tells us we can create department type objects. We can create any number of department objects.

All programming constructs in java reside in class. When JVM starts running it first looks for the class when we compile. Every Java application must have atleast one class and one main method. Class starts with class keyword. A class definition must be saved in class file that has same as class name. File name must end with .java extension.

public class FirstClass {public static void main(String[] args)

{System.out.println(“My First class”);

}

}

If we see the above class when we compile JVM loads the FirstClass and generates a .class file(FirstClass.class). When we run the program we are running the class and then executes the main method.

 

36) What is an object ?

An Object is instance of class. A class defines type of object. Each object belongs to some class.Every object contains state and behavior. State is determined by value of attributes and behavior is called method. Objects are alos called as an instance. To instantiate the class we declare with the class type.

public classFirstClass {public static voidmain(String[] args)

{

FirstClass f=new FirstClass();

System.out.println(“My First class”);

}

}

To instantiate the FirstClass we use this statement FirstClass f=new FirstClass(); f is used to refer FirstClass object.

37)What is method in java ?

It contains the executable body that can be applied to the specific object of the class. Method includes method name, parameters or arguments and return type and a body of executable code.

Syntax : type methodName(Argument List){

}

ex : public float add(int a, int b, int c) methods can have multiple arguments. Separate with commas when we have multiple arguments.

38) What is encapsulation ?

The process of wrapping or putting up of data in to a single unit class and keeps data safe from misuse is called encapsulation .

Through encapsulation we can hide and protect the data stored in java objects.Java supports encapsulation through access control. There are four access control modifiers in java public , private ,protected and default level. 

For example take a car class , In car we have many parts which is not required for driver to know what all it consists inside. He is required to know only about how to start and stop the car. So we can expose what all are required and hide the rest by using encapsulation.

39) Why main() method is public, static and void in java ?

public : “public” is an access specifier which can be used outside the class. When main method is declared public it means it can be used outside class.

static : To call a method we require object. Sometimes it may be required to call a method without the help of object. Then we declare that method as static. JVM calls the main() method without creating object by declaring keyword static.

void : void return type is used when a method does’nt return any value . main() method does’nt return any value, so main() is declared as void.

Signature : public static void main(String[] args) {

40) Explain about main() method in java ?

Main() method is starting point of execution for all java applications. 

public static void main(String[] args) {} 

String args[] are array of string objects we need to pass from command line arguments. 

Every Java application must have atleast one main method.

41)What is constructor in java ?

we use constructors to initialize all variables in the class when an object is created. As and when an object is created it is initialized automatically with the help of constructor in java.

 We have two types of constructors 

Default Constructor

 Parameterized Constructor

 Signature : public classname()

 {

 } Signature : public classname(parameters list)

 {

 } 

42 )What is difference between length and length() method in java ?

length() : In String class we have length() method which is used to return the number of characters in string.

 Ex : String str = “Hello World”;

 System.out.println(str.length()); 

Str.length() will return 11 characters including space.

 length : we have length instance variable in arrays which will return the number of values or objects in array. 

For example : 

String days[]={” Sun”,”Mon”,”wed”,”thu”,”fri”,”sat”};

 Will return 6 since the number of values in days array is 6.

43) What is ASCII Code?

ASCII stands for American Standard code for Information Interchange. ASCII character range is 0 to 255. We can’t add more characters to the ASCII Character set. ASCII character set supports only English. That is the reason, if we see C language we can write c language only in English we can’t write in other languages because it uses ASCII code.   

44) What is Unicode ?

Unicode is a character set developed by Unicode Consortium. To support all languages in the world Java supports Unicode values. Unicode characters were represented by 16 bits and its character range is 065,535. 

Java uses ASCII code for all input elements except for Strings,identifiers, and comments. If we want to use telugu we can use telugu characters for identifiers.We can enter comments in telugu.

45) Difference between Character Constant and String Constant in java ?

Character constant is enclosed in single quotes. String constants are enclosed in double quotes. Character constants are single digit or character. String Constants are collection of characters.

Ex :’2’, ‘A’

Ex : “Hello World”

46) What are constants and how to create constants in java?

Constants are fixed values whose values cannot be changed during the execution of program. We create constants  in java using final keyword.

 Ex : final int number =10; 

final String str=”java-interview –questions” 

47) Difference between ‘>>’ and ‘>>>’ operators in java?

>> is a right shift operator shifts all of the bits in a value to the right to a specified number of times. int a =15; 

a= a >> 3; 

The above line of code moves 15 three characters right.

 >>>  is an unsigned shift operator used to shift right. The places which were vacated by shift are filled with zeroes.

48) Explain Java Coding Standards for classes or Java coding conventions for classes?

Sun has created Java Coding standards or Java Coding Conventions . It is recommended highly to follow java coding standards.

 Classnames should start with uppercase letter. Classnames names should be nouns. If Class name is of multiple words then the first letter of inner word must be capital letter.

 Ex : Employee, EmployeeDetails, ArrayList, TreeSet, HashSet 

49) Explain Java Coding standards for interfaces?

1)      Interface should start with uppercase letters

 2)      Interfaces names should be adjectives

 Example : Runnable, Serializable, Marker, Cloneable 

50) Explain Java Coding standards for Methods?

1)      Method names should start with small letters. 

2)      Method names are usually verbs 

3)      If method  contains multiple words, every inner word  should start with uppercase letter.

 Ex : toString()

 4)      Method name must be combination of verb and noun 

Ex : getCarName(),getCarNumber()   

51) Explain Java Coding Standards for variables ?

1)      Variable names should start with small letters. 

2)      Variable names should be nouns

 3)      Short meaningful names are recommended.

 4)   If there are multiple words every innerword should start with Uppecase character. Ex : string,value,empName,empSalary 

52)Explain Java Coding Standards for Constants?

Constants in java are created using static and final keywords.

 1)      Constants contains only uppercase letters. 

2)   If constant name is combination of two words it should be separated by underscore

3)      Constant names are usually nouns.

 Ex:MAX_VALUE, MIN_VALUE, MAX_PRIORITY, MIN_PRIORITY 

 

53) What is ‘IS-A ‘ relationship in java?

‘is a’ relationship is also known as inheritance. We can implement ‘is a’ relationship or inheritance in java using extends keyword. The advantage or inheritance or is a relationship is reusability of code instead of duplicating the code.

 Ex :  Motor cycle is a vehicle 

Car is a vehicle Both car and motorcycle extends vehicle. 

54) What is ‘HAS A’’ relationship in java?

‘Has a ‘ relationship is also known as “composition or Aggregation”. As in inheritance we have ‘extends’ keyword we don’t have any keyword to implement ‘Has a’ relationship in java.  The main advantage of ‘Has-A‘ relationship in java code reusability. 

55) Explain about instanceof operator in java?

Instanceof operator is used to test the object is of which type. Syntax : <reference expression> instanceof  <destination type> Instanceof returns true if  reference expression is subtype of destination type. Instanceof returns false if reference expression is null. 

Example :   public classInstanceOfExample {public static voidmain(String[] args) {Integer a = newInteger(5);if (a instanceof java.lang.Integer)

 { System.out.println(true);

 } else { 

System.out.println(false); 

}  

 }   Since a is integer object it returns true.

 There will be a compile time check whether reference expression is subtype of destination type. If it is not a subtype then compile time error will be shown as Incompatible types 

56) What does null mean in java?

When a reference variable doesn’t point to any value it is assigned null. Example : Employee employee; In the above example employee object is not instantiate so it is pointed no where 

57) Can we have multiple classes in single file ?

Yes we can have multiple classes in single file but it people rarely do that and not recommended. We can have multiple classes in File but only one class can be made public. If we try to make two classes in File public we get  following compilation error. “The public type must be defined in its own file”.   

58) What all access modifiers are allowed for top class ?

For top level class only two access modifiers are allowed. public and default. If a class is declared as public it is visible everywhere. If a class is declared default it is visible only in same package. 

If we try to give private and protected as access modifier to class we get the below compilation error. 

Illegal Modifier for the class only public,abstract and final are permitted.     

59) What are packages in java?

Package is a mechanism to group related classes ,interfaces and enums in to a single module. Package can be declared using the following statement :

 Syntax : package <package-name>

 Coding Convention : package name should be declared in small letters. 

package statement defines the namespace.

 The main use of package is 

1)      To resolve naming conflicts 

2)      For visibility control :  We can define classes and interfaces that are not accessible outside the class. 

60) Can we have more than one package statement in source file ?

We can’t have more than one package statement in source file.  In any java program there can be atmost only 1 package statement. We will get compilation error if we have more than one package statement in source file. 

61) Can we define package statement after import statement in java?

We can’t define package statement after import statement in java. package statement must be the first statement in source file. We can have comments before the package statement. 

62) What are identifiers in java?

Identifiers are names in java program. Identifiers can be class name, method name or variable name. Rules for defining identifiers in java: 

1)    Identifiers must start with letter,Underscore or dollar($) sign. 

2)    Identifiers can’t start with numbers .

 3)    There is no limit on number of characters in identifier but not recommended to have more than 15 characters 

4)    Java identifiers are case sensitive.

 5)    First letter can be alphabet ,or underscore and dollar sign. From second letter we can have numbers . 

6)    We should’nt use reserve words for identifiers in java.   

63) What are access modifiers in java?

The important feature of encapsulation is access control. By preventing access control we can misuse of class, methods and members. A class, method or variable can be accessed is determined by the access modifier. There are three types of access modifiers in java. public,private,protected. If no access modifier is specified then it has a default access. 

64) What is the difference between access specifiers and access modifiers in java?

In C++ we have access specifiers as public,private,protected and default and access modifiers as static, final. But there is no  such divison of access specifiers and access modifiers in java. 

In Java we have access modifiers and non access modifiers.

 Access Modifiers : public, private, protected, default 

Non Access Modifiers : abstract, final, stricfp. 

65) What access modifiers can be used for class ?

We can use only two access modifiers for class public and default. 

public: A class with public modifier can be visible 

1)    In the same class 

2)    In the same package subclass 

3)    In the same package nonsubclass 

4)    In the different package subclass

 5)    In the different package non subclass.   

default :  A class with default modifier can be accesed 

1)    In the same class 

2)    In the same package subclass

 3)    In the same package nonsubclass

 4)    In the different package subclass 

5)    In the different package non subclass. 

66) Explain what access modifiers can be used for methods?

We can use all access modifiers public, private,protected and default for methods. public :

 When a method is declared as public it can be accessed

 1)    In the same class

 2)    In the same package subclass

 3)    In the same package nonsubclass 

4)    In the different package subclass 

5)   In the different package non subclass

default : When a method is declared as default, we can access that method in 

1)    In the same class 

2)    In the same package subclass 

3)    In the same package non subclass We cannot access default access method in

 1)    Different package subclass

 2)    Different package non subclass.  

 protected : When a method is declared as protected it can be accessed

 1)    With in the same class

 2)    With in the same package subclass

 3)    With in the same package non subclass 

4)    With in different package subclass It cannot be accessed non subclass in different  package.  

  private : When a method is declared as private it can be accessed only in that class. It cannot be accessed in 

1)    Same package subclass

 2)    Same package non subclass

 3)    Different package subclass 

4)    Different package non subclass. 

67)Explain what access modifiers can be used for variables?

We can use all access modifiers public, private,protected and default for variables. public :  When a variables is declared as public it can be accessed 

1)  In the same class 

2)  In the same package subclass 

3  In the same package nonsubclass

 4) In the different package subclass 

5)  In the different package non subclass. 

default : When a variables is declared as default, we can access that method in

 1)    In the same class

 2)    In the same package subclass

 3)    In the same package non subclass We cannot access default access variables in

 4)    Different package subclass

 5)    Different package non subclass. 

  protected : When a variables is declared as protected it can be accessed 

1)    With in the same class

 2)    With in the same package subclass 

3)    With in the same package non subclass

 4)    With in different package subclass It cannot be accessed non subclass in different  package.  

  private : When a variables is declared as private it can be accessed only in that class. It cannot be accessed in

 1)    Same package subclass 

2)    Same package non subclass 

3)    Different package subclass 

4)    Different package non subclass.   

68) What is final access modifier in java?

final access modifier can be used for class, method and variables. The main advantage of final access modifier is security no one can modify our classes, variables and methods. The main disadvantage of final access modifier is we cannot implement oops concepts in java. Ex : Inheritance, polymorphism. 

final class : A final class cannot be extended or subclassed.  We ar e preventing inheritance by marking a class as final. But we can still access the methods of this class by composition. Ex: String class 

final methods:  Method overriding is one of the important features in java. But there are situations where we may not want to use this feature. Then we  declared method as final which will print overriding.  To allow a method from being overridden we use final access modifier for methods. 

final variables : If a variable is declared as final ,it behaves like a constant . We cannot modify the value of final variable. Any attempt to modify the final variable results in compilation error. The error is as follows “final variable cannot be assigned.”   

69) Explain about abstract classes in java?

Sometimes we may come across a situation where we cannot provide implementation  to all the methods in a class. We want to leave the implementation to a class that extends it. In such case we declare a class as abstract.To make a class abstract we use key word abstract. Any class that contains one or more abstract methods is declared as abstract. If we don’t declare class as abstract which contains abstract methods we get compile time error. We get the following error. 

“The type <class-name> must be an abstract class to define abstract methods.” Signature ; abstract class <class-name>

 {

 } For example if we take a vehicle class we cannot provide implementation to it because there may be two wheelers , four wheelers etc. At that moment we make vehicle class abstract. All the common features of vehicles are declared as abstract methods in vehicle class. Any class which extends vehicle will provide its  method implementation. It’s the responsibility of subclass to provide implementation. 

The important features of abstract classes are : 

1)    Abstract classes cannot be instantiated.

 2)    An abstract classes contains abstract methods, concrete methods or both. 

3)    Any class which extends abstract class must override all methods of abstract class. 4)    An abstract class can contain either 0 or more abstract methods. 

Though we cannot instantiate abstract classes we can create object references . Through superclass references we can point to subclass.   

70) Can we create constructor in abstract class ?

We can create constructor in abstract class , it does’nt give any compilation error. But when we cannot instantiate class there is no use in creating a constructor for abstract class. 

71) What are abstract methods in java?

An abstract method is the method which does’nt have any body.  Abstract method is declared with keyword abstract and semicolon in place of method body.

 Signature : public abstract void <method name>();

 Ex : public abstract void getDetails(); 

It is the responsibility of subclass to provide implementation to abstract method defined in abstract class. 

72) What is an exception in java?

In java exception is an object. Exceptions are created when an  abnormal situations are arised in our program. Exceptions can be created by JVM or by our application code. All Exception classes are defined in java.lang. In otherwords we can say Exception as run time error. 

73) State some situations where exceptions may arise in java?

1)    Accesing an element that does not exist in array. 

2) Invalid conversion of number to string and string to number. (NumberFormatException) 

3)    Invalid casting of class (Class cast Exception) 

4)    Trying to create object for interface or abstract class (Instantiation Exception) 

74) What is Exception handling in java?

Exception handling is a mechanism what to do when some abnormal situation arises in program. When an exception is raised in program it leads to termination of program when it is not handled properly. The significance of exception handling comes here in order not to terminate a program abruptly and to continue with the rest of program normally. This can be done with help of Exception handling. 

75) What is an eror in Java?

Error is the subclass of Throwable class in java.  When errors are caused by our program we call that as Exception, but some times exceptions are caused due to some environment issues such as running out of memory. In such cases we can’t handle the exceptions.  Exceptions which cannot be recovered are called as errors in java.

 Ex : Out of memory issues. 

76) What are advantages of Exception handling in java?

1)    Separating normal code from exception handling code to avoid abnormal termination of program. 

2)    Categorizing in to different types of Exceptions so that rather than handling all exceptions with Exception root class we can handle with specific exceptions. It is recommended to handle exceptions  with specific Exception instead of handling with Exception root class. 

3)    Call stack mechanism : If a method throws an exception and it is not handled immediately, then that exception is propagated or thrown to the caller of that method. This propogation continues till it finds an appropriate exception handler ,if it finds handler it would be handled otherwise program terminates abruptly. 

77) In how many ways we can do exception handling in java?

We can handle exceptions in either of the two ways : 

1)    By specifying try catch block where we can catch the exception.

 2)    Declaring a method with throws clause . 

78) List out five keywords related to Exception handling ?

1)    Try 

2)    Catch

 3)    throw 

4)    throws

 5)    finally 

79) Explain try and catch keywords in java?

In try block we define all exception causing code. In java try and catch forms a unit. A catch block catches the exception thrown by preceding try block. Catch block cannot catch an exception thrown by another try block. If there is no exception causing code in our program or exception is not raised in our code jvm ignores the try catch block. Syntax :

 try 

Catch(Exception e) 

{

 } 

80) Can we have try block without catch block?

Each try block requires atleast one catch block or finally block. A try block without catch or finally will result in compiler error. We can skip either of catch or finally block but not both. 

81) Can we have multiple catch block for a try block?

In some cases our code may throw more than one exception. In such case we can specify two or more catch clauses, each catch handling different type of exception. When an exception is thrown jvm checks each catch statement in order and the first one which matches the type of exception is execution and remaining catch blocks are skipped. 

Try with multiple catch blocks is highly recommended in java.

 If try with multiple catch blocks are present the order of catch blocks is very important and the order should be from child to parent. 

82) Explain importance of finally block in java?

Finally block is used for cleaning up of resources such as closing connections, sockets etc. if try block executes with no exceptions then finally is called after try block without executing catch block. If there is exception thrown in try block finally block executes immediately after catch block. 

If an exception is thrown,finally block will be executed even if the no catch block handles the exception.     

83) Can we have any code between try and catch blocks?

We shouldn’t declare any code between try and catch block. Catch block should immediately start after try block.

 try{

 //code 

System.out.println(“one line of code”);  // illegal 

catch(Exception e){ 

//

 } 

84) Can we have any code between try and finally blocks?

We shouldn’t declare any code between try and finally block. finally block should immediately start after catch block.If there is no catch block it should immediately start after try block.

 try{ 

//code

 }

 System.out.println(“one line of code”);  // illegal

 finally{

 //

 } 

85) Can we catch more than one exception in single catch block?

From Java 7, we can catch more than one exception with single catch block. This type of handling reduces the code duplication. 

Note : When we catch more than one exception in single catch block , catch parameter is implicity final.

 We cannot assign any value to catch parameter. 

Ex : catch(ArrayIndexOutOfBoundsException || ArithmeticException e) 

In the above example e is final we cannot assign any value or modify e in catch statement. 

86) What are checked Exceptions?

1)    All the subclasses of Throwable class except error,Runtime Exception and its subclasses are checked exceptions. 

2)    Checked exception should be thrown with keyword throws or should be provided try catch block, else the program would not compile. We do get compilation error. Examples : 

1)    IOException,

 2)    SQlException,

 3)    FileNotFoundException, 

4)    InvocationTargetException,

 5)    CloneNotSupportedException

 6)    ClassNotFoundException

 7)    InstantiationException 

87) What are unchecked exceptions in java?

All subclasses of RuntimeException are called unchecked exceptions. These are unchecked exceptions because compiler does not checks if a method handles or throws exceptions. Program compiles even if we do not catch the exception or throws the exception. If an exception occurs in the program,program terminates . It is difficult to handle these exceptions because there may be many places causing exceptions. Example : 

1) Arithmetic Exception 

3)    ArrayIndexOutOfBoundsException 

4)    ClassCastException 

5)    IndexOutOfBoundException 

6)    NullPointerException 

7)    NumberFormatException 

8)    StringIndexOutOfBounds

 9)    UnsupportedOperationException 

88) What is default Exception handling in java?

When JVM detects exception causing code, it constructs a new exception handling object by including the following information.

 1)    Name of Exception

 2)    Description about the Exception

 3)    Location of Exception. 

After creation of object by JVM it checks whether there is exception handling code or not. If there is exception handling code then exception handles and continues the program. If there is no exception handling code JVM give the responsibility of exception handling to default handler and terminates abruptly. 

Default Exception handler displays description of exception,prints the stacktrace and location of exception and terminates the program. 

Note : The main disadvantage of this default exception handling is program terminates abruptly.   

89) Explain throw keyword in java?

Generally JVM throws the exception and we handle the exceptions by using try catch block. But there are situations  where we have to throw userdefined exceptions or runtime exceptions. In such case we use throw keyword to throw exception explicitly. 

Syntax : throw throwableInstance; 

Throwable instance must be of type throwable or any of its subclasses. 

After the throw statement execution stops and subsequent statements are not executed. Once exception object is thrown JVM checks is there any catch block to handle the exception. If not then the next catch statement till it finds the appropriate handler. If appropriate handler is not found ,then default exception handler halts the program and prints the description and location of exception.

 In general we use throw keyword for throwing userdefined or customized exception. 

 

90) Can we write any code after throw statement?

After throw statement jvm stop execution and subsequent statements are not executed. If we try to write any statement after throw we do get compile time error saying unreachable code.   

91) Explain importance of throws keyword in java?

Throws statement is used at the end of method signature to indicate that an exception of a given type may be thrown from the method.

The main purpose of throws keyword is to delegate responsibility of exception handling to the caller methods, in the case of checked exception.

 In the case of unchecked exceptions, it is not required to use throws keyword. 

We can use throws keyword only for throwable types otherwise compile time error saying incompatible types.

 An error is unchecked , it is not required to handle by try catch or by throws. 

Syntax : Class Test{ 

Public static void main(String args[]) throws IE

 {

 }

 }

 Note : The method should throw only checked exceptions and subclasses of checked exceptions. It is not recommended to specify exception superclasses in the throws class when the actual exceptions thrown in the method are instances of their subclass.   

91) Explain the importance of finally over return statement?

finally block is more important than return statement when both are present in a program. For example if there is any return statement present inside try or catch block , and finally block is also present first finally statement will be executed and then return statement will be considered.   

93) Explain a situation where finally block will not be executed?

Finally block will not be executed whenever jvm shutdowns. If we use system.exit(0) in try statement finally block if present will not be executed. 

94)Can we use catch statement for checked exceptions?

If there is no chance of raising an exception in our code then we can’t declare catch block for handling checked exceptions .This raises compile time error if we try to handle checked exceptions when there is no possibility of causing exception. 

95)What are user defined exceptions?

To create customized error messages we use userdefined exceptions. We can create user defined exceptions as checked or unchecked exceptions.

 We can create user defined exceptions that extend Exception class or subclasses of checked exceptions so that userdefined exception becomes checked. 

Userdefined exceptions can extend RuntimeException to create userdefined unchecked exceptions.

 Note : It is recommended to keep our customized exception class as unchecked,i.e we need to extend Runtime Exception class but not Excpetion class. 

96) Can we rethrow the same exception from catch handler?

Yes we can rethrow the same exception from our catch handler. If we want to rethrow checked exception from a catch block we need to declare that exception. 

97) Can we nested try statements in java?

Yes try statements can be nested. We can declare try statements inside the block of another try statement. 

98) Explain the importance of throwable class and its methods?

Throwable class is the root class for Exceptions.  All exceptions are derived from this throwable class. The two main subclasses of Throwable are Exception and Error. The three methods defined in throwable class are : 

1)    void printStackTrace() : 

This prints the exception information in the following format : Name of the exception, description followed by stack trace.

 2)    getMessage() 

This method prints only the description of Exception. 

3)    toString(): 

It prints the name and description of Exception. 

99) Explain when ClassNotFoundException will be raised ?

When JVM tries to load a class by its string name, and couldn’t able to find the class classNotFoundException will be thrown. An example for this exception is when class name is misspelled and when we try to load the class by string name hence class cannot be found which raises ClassNotFoundException. 

100) Explain when NoClassDefFoundError will be raised ?

This error is thrown when JVM tries to load the class but no definition for that class is found NoClassDefFoundError will occur. The class may exist at compile time but unable to find at runtime. This might be due to misspelled classname at command line, or classpath is not specified properly , or the class file with byte code is no longer available. Java Interview questions on threads 

101) What is process ?

A process is a program in execution. 

 Every process have their own memory space.Process are heavy weight and requires their own address space. One or more threads make a process. 

102) What is thread in java?

Thread is separate path of execution in program.  Threads are

 1)    Light weight

 2)    They share the same address space. 

3) creating thread is simple when compared to process because creating thread requires less resources when compared to process 

4) Threads exists in process. A process have atleast one thread. 

103) What is multitasking ?

Multitasking means performing more than one activity at a time on the computer. Example Using spreadsheet and using calculator at same time. 

104)What are different types of multitasking?

There are two different types of multitasking : 

1)    Process based multitasking

 2)    Thread based multitasking

 Process based multitasking : It allows to run two or more programs concurrently. In process based multitasking a process is the smallest part of code . Example : Running Ms word and Ms powerpoint at a time. 

Thread based multitasking : It allows to run parts of a program to run concurrently. Example : Formatting the text and printing word document at same time . 

Java supports thread based multitasking  and provides built in support for multithreading.

 

105)What are the benefits of multithreaded programming?

Multithreading enables to use idle time of cpu to another thread which results in faster execution of program. In single threaded environment each task has to be completed before proceeding to next task making cpu idle. 

106) Explain thread in java?

1)    Thread is independent path of execution with in a program.

 2)    A thread consists of three parts Virtual Cpu, Code and data. 

3)    At run time threads share code and data i.e they use same address space. 

4)    Every thread in java is an object of java.lang.Thread class. 

107) List Java API that supports threads?

java.lang.Thread : This is one of the way to create a thread. By extending Thread class and overriding 

run() we can create thread in java.

java.lang.Runnable : Runnable is an interface in java. By implementing runnable interface and overriding 

run() we can create thread in java.

 java.lang.Object :  Object class is the super class for all the classes in java. In object class we have three methods wait(), notify(), notifyAll() that supports threads. 

java.util.concurrent : This package has classes and interfaces that supports concurrent programming. Ex : Executor interface, Future task class etc. 

108) Explain about main thread in java?

Main thread is the first thread that starts immediately after a program is started.

 Main thread is important because : 

1)    All the child threads spawn from main thread.

 2)    Main method is the last thread to finish execution. 

When JVM calls main method() it starts a new thread. Main() method is temporarily stopped while the new thread starts running. 

109) In how many ways we can create threads in java?

We can create threads in java by any of the two ways : 

1)    By extending Thread class 

2)    By Implementing Runnable interface. 

110) Explain creating threads by implementing Runnable class?

This is first and foremost way to create threads . By implementing runnable interface and implementing 

run() method we can create new thread. 

Method signature : public void run()

Run is the starting point for execution for another thread within our program. 

Example : 

public class MyClass implements Runnable {

 @Override

 public void run() { 

// T

 } 

}   

111) Explain creating threads by extending Thread class ?

We can create a thread by extending Thread class. The class which extends Thread class must override the run() method.

 Example : 

public class MyClass extends Thread { 

@Override public void run() { 

// Starting point of Execution 

}

 } 

112) Which is the best approach for creating thread ?

The best way for creating threads is to implement runnable interface. When we extend Thread class we can’t extend any other class. When we create thread by  implementing runnable interface we can implement Runnable interface. In both ways we have to implement run() method. 

113)Explain the importance of thread scheduler in java

Thread scheduler is part of JVM use to determine which thread to run at this moment when there are multiple threads. Only threads in runnable state are choosen by scheduler. Thread scheduler first allocates the processor time to the higher priority threads. To allocate microprocessor time in between the threads of the same priority, thread scheduler follows round robin fasion.

114) Explain the life cycle of thread?

A thread can be in any of the five states :

 1)    New : When the instance of thread is created it will be in New state.

 Ex : Thread t= new Thread(); 

In the above example t is in new state. The thread is created but not in active state to make it active we need to call start() method on it. 

2)    Runnable state : A thread can be in the runnable state in either of the following two ways : a) When the start method is invoked or b) A thread can also be in runnable state after coming back from blocked or sleeping or waiting state. 

3)    Running state : If thread scheduler allocates cpu time, then the thread will be in running state. 

4)    Waited /Blocking/Sleeping state: In this state the thread can be made temporarily inactive for a short period of time. A thread can be in the above state  in any of the following ways: 

1)    The thread waits to acquire lock of an object. 

2)    The thread waits for another thread to complete.

 3)    The thread waits for notification of other thread.  

 5)    Dead State : A thread is in dead state when thread’s run method execution is complete. It dies automatically when thread’s run method execution is completed and the thread object will be garbage collected. 

115) Can we restart a dead thread in java?

If we try to restart a dead thread by using start method we will get run time exception since the thread is not alive. 

116) Can one thread block the other thread?

No one thread cannot block the other thread in java. It can block the current thread that is running. 

117) Can we restart a thread already started in java?

A thread can be started in java using start() method in java. If we call start method second time once it is started it will cause RunTimeException(IllegalThreadStateException). A runnable thread cannot be restarted. 

118) What happens if we don’t override run method ?

If we don’t override run method .Then default implementation of Thread class run() method will be executed and hence the thread will never be in  runnable state. 

119) Can we overload run() method in java?

We can overload run method but Thread class start method will always cal run method with no arguments. But the overloaded method will not be called by start method we have to explicitly call this start() method. 

120) What is a lock or purpose of locks in java?

Lock also called monitor is used to prevent access to a shared resource by multiple threads. A lock is associated to shared resource. Whenever a thread wants to access a shared resource if must first acquire a lock . If already a lock has been acquired by other it can’t access that shared resource.  At this moment the thread has to wait until another thread releases the  lock on shared resource. To lock an object we use synchronization in java.

 A lock protects section of code allowing only one thread to execute at at a time. 

121) In how many ways we can do synchronization in java?

There are two ways to do synchronization in java: 

1)    Synchronized methods 

2)    Synchronized blocks To do synchronization we use synchronize keyword. 

122) What are synchronized methods ?

If we want a method of object to be accessed by single thread at a time we declare that method with synchronized keyword. 

Signature :

 public synchronized  void methodName(){} 

 To execute synchronized method first lock has to be acquired on that object. Once synchronized method is called lock will be automatically acquired on that method when no other thread has lock on that method. once lock has been acquired then synchronized method gets executed. Once synchronized method execution completes automatically lock will be released. The prerequisite to execute a synchronized method is to acquire lock before method execution. If there is a lock already acquired by any other thread it waits till the other thread completes.

123) When do we use synchronized methods in java?

If multiple threads tries to access a method where method can manipulate the state of object , in such scenario we can declare a method as synchronized. 

124) When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?

No it is not possible to execute synchronized methods by other threads when a thread is inside a synchronized method. 

125) When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?

Yes it is possible for thread executing a synchronized method to execute another synchronized method of an object. 

public synchronized  void methodName()  

 {

 }   

To execute synchronized method first lock has to be acquired on that object. Once synchronized method is called lock will be automatically acquired on that method when no other thread has lock on that method. once lock has been acquired then synchronized method gets executed. Once synchronized method execution completes automatically lock will be released. The prerequisite to execute a synchronized method is to acquire lock before method execution. If there is a lock already acquired by any other thread it waits till the other thread completes.

126) What are synchronized blocks in java?

Synchronizing few lines of code rather than complete method with the help of synchronized keyword are called synchronized blocks.

 Signature : 

Synchronized (object reference){// code} 

127) When do we use synchronized blocks and advantages of using synchronized blocks?

If very few lines of code requires synchronization then it is recommended to use synchronized blocks. The main advantage of synchronized blocks over synchronized methods is it reduces the waiting time of threads and improves performance of the system. 

128) What is class level lock ?

Acquiring lock on the class instance rather than object of the class is called class level lock. The difference between class level lock and object level lock is in class level lock lock is acquired on class .class instance and in object level lock ,lock is acquired on object of class. 

129) Can we synchronize static methods in java?

Every class in java has a unique lock associated with it. If a thread wants to execute static synchronize method it need to acquire first class level lock. When a thread was executing static synchronized method no other thread can execute static synchronized method of class since lock is acquired on class. 

But it can execute the following methods simultaneously :

 1)    Normal static methods 

2)    Normal instance methods

 3)    synchronize instance methods 

Signature :

 synchronized(Classname.class){} 

130) Can we use synchronized block for primitives?

Synchronized blocks are applicable only for objects if we try to use synchronized blocks for primitives we get compile time error. 

131) What are thread priorities and importance of thread priorities in java?

When there are several threads in waiting, thread priorities determine which thread to run. In java programming language every thread has a priority. A thread inherits priority of its parent thread. By default thread has normal priority of 5. Thread scheduler uses thread priorities to decide when each thread is allowed to run. Thread scheduler runs higher priority threads first. 

132) Explain different types of thread priorities ?

Every thread in java has priorities in between 1 to 10. By default priority is 5 (Thread.NORM_PRIORITY).  The maximum priority would be 10 and minimum would be 1.Thread class defines the following constants(static final variables) to define properties. 

Thread. MIN_PRIORITY = 1; 

Thread.NORM_PRIORITY=5;

 Thread. MAX_PRIORITY=10; 

133) How to change the priority of thread or how to set priority of thread?

Thread class has a set method to set the priority of thread and get method to get the priority of the thread. 

Signature : final void setPriority(int value); 

The setPriority() method is a request to jvm to set the priority. JVM may or may not oblige the request. 

We can get the priority of current thread by using getPriority() method of Thread class. final int getPriority()

 {

 } 

134) If two threads have same priority which thread will be executed first ?

We are not guaranteed which thread will be executed first when there are threads with equal priorities in the pool. It depends on thread scheduler to which thread to execute. The scheduler can do any of the following things :

 1)    It can pick any thread from the pool and run it till it completes.

 2)    It can give equal opportunity for all the threads by time slicing. 

135) What all methods are used to prevent thread execution ?

There are three methods in Thread class which prevents execution of thread. 

1)    yield() 

2)    join() 

3)    sleep() 

136) Explain yield() method in thread class ?

Yield() method makes the current running thread to move in to runnable state from running state giving chance to remaining threads of equal priority which are in waiting state. yield() makes current thread to sleep for a specified amount of time.There is no guarantee that moving a current running thread from runnable to running state. It all depends on thread scheduler it doesn’t gurantee anything. 

Calling yield()  method on thread does not have any affect if object has a lock. The thread does’nt lose any lock if it has acquired a lock earlier.  

 Signature : 

public static native void yield()

 { 

  } 

137) Is it possible for yielded thread to get chance for its execution again ?

Yield() causes current thread to sleep for specified amount of time giving opportunity for other threads of equal priority to execute. Thread scheduler decides whether it get chance for execution again or not. It all depends on mercy of thread scheduler. 

138) Explain the importance of join() method in thread class?

A thread can invoke the join() method on other thread to wait for other thread to complete its execution.  Assume we have two threads, t1 and t2  threads . A running thread t1 invokes join() on thread t2 then t1 thread will wait in to waiting state until t2 completes. Once t2 completes the execution, t1 will continue. join() method throws Interrupted Exception so when ever we use 

join() method we should handle Interrrupted Exception by throws or by using try catch block. 

Signature : 

 public final void join() throws InterruptedException

 {  

 } 

  public final synchronized void join(long millis) throws InterruptedException

 {  

 }

 public final synchronized void join(long millis, int nanos)

 throws InterruptedException

 { 

  } 

139) Explain purpose of sleep() method in java?

sleep() method causes current running thread to sleep for specified amount of time . sleep() method is the minimum amount of the time the current thread sleeps but not the exact amount of time.  

 Signature :  

  public static native void sleep(long millis) throws InterruptedException

 {

   }     public static void sleep(long millis, int nanos) 

throws InterruptedException {  

   }   

140) Assume a thread has lock on it, calling sleep() method on that thread will release the lock?

Calling sleep() method on thread which has lock does’nt affect. Lock will not be released though the thread sleeps for a specified amount of time. 

141) Can sleep() method causes another thread to sleep?

No sleep() method causes current thread to sleep not any other thread. 

142) Explain about interrupt() method of thread class ?

Thread class interrupt() method is used to interrupt current thread or another thread. It doesnot mean the current thread to stop immediately, it is polite way of telling or requesting to continue your present work. That is the reason we may not see the impact of interrupt call immediately.

 Initially thread has a boolean property(interrupted status) false. So when we call interrupt() method status would set to true. This causes the current thread to continue its work and does not have impact immediately. 

If a thread is in sleeping or waiting status (i.e thread has executed wait () or sleep() method) thread gets interrupted it stops what it is doing and throws an interrupted exception. This is reason we need to handle interrupted exception with throws or try/ catch block. 

143) Explain about interthread communication and how it takes place in java?

Usually threads are created to perform different unrelated tasks but there may be situations where they may perform related tasks. Interthread communication in java is done with the help of following three methods :

 1)    wait() 

2)    notify()

 3)    notifyAll() 

144) Explain wait(), notify() and notifyAll() methods of object class ?

wait() : wait() method()  makes the thread current thread sleeps and releases the lock until some other thread acquires the lock and calls notify(). 

notify() :notify() method wakes up the thread that called wait on the same object. notfiyAll() :notifyAll() method wakes up all the threads that are called wait() on the same object. The highest priority threads will run first.

 All the above three methods are in object class and are called only in synchronized context. 

All the above three methods must handle InterruptedException by using throws clause or  by using try catch clause. 

145) Explain why wait() , notify() and notifyAll() methods are in Object class rather than in thread class?

First to know why they are in object class we should know what wait(), notify(), notifyAll() methods do. wait() , notify(), notifyAll() methods are object level methods they are called on same object.wait(), notify(), notifyAll()  are called on an  shared object so to they are kept in object class rather than thread class. 

146) Explain IllegalMonitorStateException and when it will be thrown?

IllegalMonitorStateException is thrown when wait(), notify() and notifyAll() are called in non synchronized context. Wait(), notify(),notifyAll() must always be called in synchronized context other wise we get this run time exception

147) when wait(), notify(), notifyAll() methods are called does it releases the lock or holds the acquired lock?

wait(), notify(), notifyAll() methods are always called in synchronized context. When these methods are called in synchronized context. 

So when they enter first in synchronized context thread acquires the lock on current object. When wait(), notify(), notifyAll() methods are called lock is released on that object. 

148) What are thread groups?

Thread Groups are group of threads and other thread groups. It is a way of grouping threads so that actions can be performed on set of threads for easy maintenance and security purposes. For example we can start and stop all thread groups. We rarely use thread group class. By default all the threads that are created belong to default thread group of the main thread. Every thread belongs to a thread group. Threads that belong to a particular thread group cannot modify threads belonging to another thread group. 

149) What are thread local variables ?

Thread local variables are variables associated to a particular thread rather than object. We declare ThreadLocal object as private static variable in a class. Everytime a new thread accesses object by using getter or setter we are accesing copy of object.  Whenever a thread calls get or set method of ThreadLocal instance a new copy is associated with particular object.

150) What are daemon threads in java?

Daemon threads are threads which run in background. These are service threads and works for the benefit of other threads. Garbage collector is one of the good example for daemon threads. By default all threads are non daemon. Daemon nature of a thread can be inherited. If parent thread is daemon , child thread also inherits daemon nature of thread. 

)

Press ESC to close