Mita,
The objects that are new'ed, are created on the Heap and are garbage collected using the 'zero reference' rule. This is an important concept for
SCJP, so make sure you understand it well.
The objects created in the String pool are not subjected to GC until the class is unloaded by the JVM. They get discarded at the time, or just before the virtual machine unloads the class bytecode. For the purpose of the SCJP exam, you are
not required to know the details of String pool memory management.
Hope this helps,
Ajith