|
||||||||||||
|
|
java interview questions-1
0
Q: What is the difference between an Interface and an Abstract class?
A: An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. An interface has all public members and no implementation. An abstract class is a class which may have the usual flavors of class members (private, protected, etc.), but has some abstract methods. . TOPYour browser may not support display of this image. Q: What is the purpose of garbage collection in Java, and when is it used? A: The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used. TOPYour browser may not support display of this image. Q: Describe synchronization in respect to multithreading. A: With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchonization, it is possible for one thread to modify a shared variable while another thread is in the process of using or updating same shared variable. This usually leads to significant errors. TOPYour browser may not support display of this image. Q: Explain different way of using thread? A: The thread could be implemented by using runnable interface or by inheriting from the Thread class. The former is more advantageous, 'cause when you are going for multiple inheritance..the only interface can help. TOPYour browser may not support display of this image. Q: What are pass by reference and passby value? A: Pass By Reference means the passing the address itself rather than passing the value. Passby Value means passing a copy of the value to be passed. TOPYour browser may not support display of this image. Q: What is HashMap and Map? A: Map is Interface and Hashmap is class that implements that. TOPYour browser may not support display of this image. Q: Difference between HashMap and HashTable? A: The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls. (HashMap allows null values as key and value whereas Hashtable doesnt allow). HashMap does not guarantee that the order of the map will remain constant over time. HashMap is unsynchronized and Hashtable is synchronized. TOPYour browser may not support display of this image. Q: Difference between Vector and ArrayList? A: Vector is synchronized whereas arraylist is not. TOPYour browser may not support display of this image. Q: Difference between Swing and Awt? A: AWT are heavy-weight componenets. Swings are light-weight components. Hence swing works faster than AWT. TOPYour browser may not support display of this ima... Show full text: 43,217 characters
|
|
||||||||||
|
© Wattpad 2008. User-posted content are subject to its own terms. |
||||||||||||