Latest Answer : No it won't work.Only one main methods is allowed ...
Latest Answer : In c,there are argc and argv.argc is passed to argv and argv is used to store characters.in java there is only args.we pass a String value to it. ...
Latest Answer : In Java == is used to check the referance of variablesbut . equals is used to check the value. ...
Latest Answer : Interface is a pure(100 %) abstract class. Then why abstract class seperatly? It's the design criteria,For example we are writing one class that has methods implemented which are common to other classes .And some methods are different for ...
Latest Answer : What is the difference between servlet container & servlet component? ...
Latest Answer : UNICAST is 1-1. MULTICAST is 1-M. ...
Latest Answer : We need not call the finalize() method directly. The method is called automatically by the garbage collector when it determines no more references to the object exist. But when we need to clean-up non-Java resources ie closing a file, we need ...
Latest Answer : awt is not platform independent whereas swing is plateform independent because the resolution of awt is defferent 16-bit computer and 32-bit computer whereas in case of swing resolution is same on different-different bit computers.Running for the awt ...
Latest Answer : Trusted Applet : A trusted applet can perform operations such as reading, writing data to a local computer.We can access n/w connections from any host on the n/w by using trusted applet. A trusted applet ...
Latest Answer : finally method in Exceptions ???? finally not a method in exception ...