Describe, in general, how java's garbage collector works?
No Answer is Posted For this Question
Be the First to Post Answer
What are the states associated in the thread?
Which javutil classes and interfaces support event handling?
Name the class that is used to bind the server object with RMI Registry?
What is the immediate superclass of the applet class?
What is chat area? Explain.
which deployment descriptor element is used to configure the authentication method? a. auth-config b. login-config c. sec-config
How task's priority is used in scheduling?
Give me simple example of hibernate caching and explain the details of caching????? thanks in adv.
diff mvc1 and mvc2 wahts is mean by servlet chaining?
What is meant by method chaining?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
Can I import same package/class twice? Will the jvm load the package twice at runtime?