Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1436 Page Views: 

What is primordial class loader?



Posted By: Avi Date: 9 November 2010 12:56:51 PM
 Answer:

It is the class that is responsible for loading the class and it is the only in All JVM.


Posted By: avibtech


Date: 9 November 2010 12:56:51 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image VI9tKi
Related Questions
Core Java : Can an unreachable object become reachable again?

Can an unreachable object become reachable again?

An unreachable object may become reachable again. This can happen when the object's finalize() metho....
Category: Core Java Date: 11/3/2010 4:37:55 AM
Core Java : To what value is a variable of the boolean type automatically initialized?

To what value is a variable of the boolean type automatically initialized?

The default value of the boolean type is false.
Category: Core Java Date: 11/3/2010 4:04:55 AM
Core Java : What is the range of the char type?

What is the range of the char type?

From 0 to 2^16 - 1.
Category: Core Java Date: 11/3/2010 3:44:48 AM
Core Java : What is the difference between static and non-static variables?

What is the difference between static and non-static variables?

A static variable is associated with the class as a whole rather than with specific instances of a c....
Category: Core Java Date: 11/3/2010 3:32:53 AM
Core Java : What is reflection?

What is reflection?

Reflection is the process of finding out the different features of a class dynamically.
Category: Core Java Date: 11/3/2010 2:27:52 AM