What are various types of class loaders used by jvm?
Answer / Madhur Gautam
"Bootstrap class loader", "Extension class loader", and "Application class loader" are the three primary types of class loaders used by JVM.
| Is This Answer Correct ? | 0 Yes | 0 No |
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); } }
diff vector arraylist
Tell me about Firewalls in RMI?
whats is mean by tiles in struts
Explain the advantages and disadvantages of detached objects.
whats is mean by object and class?
what is domain,give me some brief information about that?
Where we can write Rmi registry in the code, without having to write it at the command prompt?
What are synchronized methods and synchronized statements?
Are we allowed to change the transaction isolation property in middle of a transaction?
What are various types of class loaders used by jvm?
What must a class do to implement an interface?