Wednesday 11 February 2015

TOP MNCs asked Core Java Interview Questions and Answers (Page 7)

Below are some important Core Java interview questions which are asked in most MNC company interviews for beginners or professionals.

31. Can you give few examples of final classes defined in Java API?
java.lang.String,java.lang.Math are final classes.

32. How is final different from finally and finalize?
final is a modifier which can be applied to a class or a method or a variable. final class can't be inherited, final method can't be overridden and final variable can't be changed.
finally is an exception handling code section which gets executed whether an exception is raised or not by the try block code segment.
finalize() is a method of Object class which will be executed by the JVM just before garbage collecting object to give a final chance for resource releasing activity.

33. Can a class be declared as static?
No a class cannot be defined as static. Only a method,a variable or a block of code can be declared as static.

34. When will you define a method as static?
When a method needs to be accessed even before the creation of the object of the class then we should declare the method as static.

35. What are the restriction imposed on a static method or a static block of code?
A static method should not refer to instance variables without creating an instance and cannot use "this" operator to refer the instance.
More Questions & Answers :-
Page1  Page2  Page3  Page4  Page5  Page6  
Page7  Page8

No comments:

Post a Comment