Answer from cs61c-ap (Nicole Rungsitiyakorn 13543412) for Question 3 The Java equivalent to malloc is the new key word. The equivalent to free is not using the object as Java has garbage colllection. In Java, a variable not being used is garbage collected. C allows the programmer to manage memory.