What is interface and abstract class. What is interface and abstract class. January 21, 2016 in core java 0
What is synchronized block ,static block . What is synchronized block ,static block . January 21, 2016 in core java 0
Difference between hashmap and hash table and concurrent hashmap. Difference between hashmap and hash table and concurrent hashmap. January 18, 2016 in core java 0
Difference between arraylist and vector. Difference between arraylist and vector. December 30, 2015 in core java 0
Can a constructor in Java be private or final? 73 down vote Yes, a constructor can be private. There are different uses of this.… November 19, 2015 in core java 0
how do you enforce garbage selection? Under the documentation for OutOfMemoryError it declares that it will not be thrown unless the… November 4, 2015 in core java 0
difference between synchronized hashmap and concurrent hashmap? ConcurrentHashMap. It allows concurrent modification of the Map from several threads without the need to… November 4, 2015 in core java 0
how do you avoid creating a new instance while deserializing an object? Here is my code which serializes, and deserializes. FileOutputStream fos = new FileOutputStream(“myserial1.txt”); ObjectOutputStream oos… November 4, 2015 in core java 0