Answer Posted / glibwaresoftsolutions
The classloader is a component of the Java Runtime Environment (JRE) that is produced or executed when the bytecode is running.Java classes and interfaces must be dynamically loaded into the JVM (Java Virtual Machine) using the class file classloader. The Java runtime system does not require knowledge of files and file systems due to classloaders.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why are my checkboxes not being set from on to off?
Are enterprise beans allowed to use thread.sleep()?
Explain RMI Architecture?
What do you need to set-up a cluster with jboss?
how i secure my site with the https protocol.what are the steps?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What is RMI and what are the services in RMI?
What value does readline() return when it has reached the end of a file?
What must a class do to implement an interface?
why static class in java
What is a modular application?
How many times may an objects finalize() method be invoked by the garbage collector?
Java is fully object oriented languages or not?
When a thread blocks on i/o?
What is the relationship between an event-listener interface and an event-adapter class?