Latest Answer: We should set the class path otherwise we can't compile the java program. ...
Latest Answer: with the help of serilization and exterlization ...
Latest Answer: Using finalize() method in java is not a recommended solution to release the system resources used by an object. The finalize() method will be called before deleting an object. An object in java will be deleted only by a garbage collector. The ...
Latest Answer: If you want to change the design of the application at the time of implementation ...
Latest Answer: String builder has been implemented in 1.5 can any one expalin me in detail ...
Latest Answer: Markup interface is having no method, used for TAGGER or MARKER ...
Latest Answer: It simply adds last one, it wont throw any exception, that is logical mistake, must taken care by programmer. ...
Latest Answer: Object's state consists of the value of it's member variables. ...
Import java.util.*;public class SetEx { private String str; SetEx(String s) { str = s } public static void main(String[] ar) { Set s = new HashSet(); SetEx setEx = new SetEx("Java"); SetEx setEx1 = new SetEx("Java"); String str1 = new String("Java"); String str2 = new String("Java"); s.add(setEx); s.add(setEx1); s.add(str1); s.add(str2); System.out.println("No Of elements
Latest Answer: Byte Code is in the form of binary codes like 0/1 whether ASCII code is in the form of numeric digits which is assigned to characters and alphabets.Byte code is platform independent where ASCII codes are platform dependent.Byte code is intermediate language ...
View page << Previous 4 5 6 7 [8] 9 10 11 12 13 Next >>

Go Top