The __________ describes the behavior of converting a named class into the bits responsible for implementing that class.

Options
- class loader
- loader class
- load class
- bit class


CORRECT ANSWER : class loader

Discussion Board
Class loader

Classloader is an abstraction class whose object responsible for loading classes. Classloader tries to locate or generate data that consititues a definition for the binary name of the class. The way to transform it is by changing the name to the file name. Reading the "class file" of that name from a file system. Every class object consists the reference of the classloader that has defined it.
Class objects of array classes are not created by class loaders and are automatically created and required by the Java runtime. Mostly class loaders are used by security managers to indicate security domains.

Rohit Sharma 08-6-2014 06:34 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement