Prev Next

Java / JVM

Explain the role of the class loader.

The class loader performs the below 3 activities in the mentioned order:

Loading: finds and imports the binary data for a type.

Linking: performs verification, preparation, and optionally resolution.

  • Verification: ensures the correctness of the imported type.
  • Preparation: allocates memory for class variables and initializing the memory to default values.
  • Resolution: transforms symbolic references from the type into direct references.

Initialization: invokes Java code that initializes class variables to their proper starting values.

It's right time to invest in Cryptocurrencies Dogecoin! Earn free bitcoins up to $250 now by signing up.

Invest now!!! Get Free equity stock (US, UK only)!

Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.

The Robinhood app makes it easy to trade stocks, crypto and more.


Webull! Receive free stock by signing up using the link: Webull signup.

More Related questions...

Show more question and Answers...

Java8 streams

Comments & Discussions