class Person { String firstName ; String lastName ; } public class Memory { public static void method1() { int x1 ; int y1 ; x1 = 10 ; Person personObj1 = new Person() ; } public static void main(String[] args) { method1() ; //What are the variables for which memory has //been released at this point ? } }