This document describes the memory areas and allocation of variables for two classes. Static variables a and b are allocated to the method area for class Jvst and initialized to 10 and 20. An object of class Jvns is created, with instance variables a and b allocated on the heap but not initialized, printing their values of 0. The main method accesses the instance variables both before and after calling an instance method.