InterviewSolution
Saved Bookmarks
| 1. |
Memory Demo Program in Javano copied answers please |
|
Answer» In Java, memory management is the process of allocation and de-allocation of OBJECTS, called Memory management. Java does memory management automatically. Java uses an AUTOMATIC memory management system called a garbage collector. THUS, we are not required to IMPLEMENT memory management logic in our application. Java memory management divides into two major parts: JVM Memory Structure Working of the Garbage Collector |
|