Memory Management & JVM
Heap (stores all objects, shared across threads, garbage collected), Stack (per-thread, stores method frames and local variables), Method Area/Metaspace (stores class metadata, shared), PC Registers (per-thread instruction pointer), and Native Method Stack (for native code calls).
Intermediate5 min

