Answer from cs61c-ed (Cory Benavides 14101530) for Question 3 Java's analog to malloc is the "new" call. There is no analog for freeing memory since the memory is automatically garbage collected. People have made a memory management system for C, alloca, however the way C interprets it & machine-specific architecture prevent it from being standard