
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Memory Pool Division
Java memory pool is divided into 5 parts namely −
- Method area − The method area stores the class code − code of the variables and methods.
- Heap−The Java objects are created in this area.
- Java Stack− While running methods the results are stored in the stack memory.
- PC registers− These contain the address of the instructions of the methods.
- Native method stacks− Similar to Java stack, native methods are executed on the Native method stacks.
Advertisements