java4all@1986 java. Powered by Blogger.

>> Saturday, June 25, 2011

Q).what is a the difference between System.err and System.out
A)
.We can redirect System.out to another file but we cannot redirect System.err stream.

Q).What are  the differences between an abstract class and an interface?
A)
.An abstract class can have concrete method, which is not allowed in an interface. Abstract class can have private or protected methods and variables and only public methods and variables are allowed in interface. We can implement more than one interface , but we can extend only one abstract class. Interfaces provides loose coupling where as abstract class provides tight coupling.

Q).What is the difference between synchronized block and synchronized method ?
A)
.Synchronized blocks place locks for the specified block where as synchronized methods place locks for the entire method.

Q).How can you force garbage collection in java?
A)
.You cannot force Garbage Collection, but you can request for it by calling the method System.gc().  But it doesn't mean that Garbage Collection will start immediately. The garbage collection is a low priority thread of JVM.

Q).How can you call a constructor from another constructor ?
A).
By using this() reference.

Q).How can you call the constructor of super class ?
A).
By using super() syntax.

Q).What's the difference between normal methods and constructors?
A)
.Constructors must have the same name of the class and can not have a return type. They are called only once,  while regular methods can be called whenever required. We cannot explicitly call a constructor.

Q).What is the use of packages in java ?
A)
.Packages are a way to organize files in java when a project consists of more than one module. It helps in resolving name conflicts when different modules have classes with the same names.

Q).What must be the order of catch blocks when catching more than one exception?
A).
The sub classes must come first. Otherwise it will give a compile time error.

Q).How can we call a method or variable of the super class from child class ?
A)
.We can use super.method() or super.variable syntax for this purpose.

Q).If you are overriding equals() method of a class, what other methods you might need to override ?
A).
HashCode

Q).How can you create your own exception ?
A).
Our class must extend either Exception or its sub class.

Q).What is serialization ?
A).
Serialization is the process of saving the state of an object.

Q).What is de-serialization?
A).
De-serialization is the process of restoring the state of an object.

0 comments:

Post a Comment

FaceBook Login

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

Total Pageviews

STATCOUNTER

  © Blogger template Simple n' Sweet by Ourblogtemplates.com 2009

Back to TOP