Answer from cs61c-av (Kenneth Wong 16192104) for Question 3 Java equivalent of malloc in C is new. There is no explicit free operation in Java that is equivalent to free in C. Java uses methods in which storage is deallocated when no longer needed. There can be no automatic memory allocation/deallocation for C because it is impossible to tell when a particular storage is no longer needed.