public class MemoryManagementExample {
public static void main(String[] args) {
unusedObject = null;
System.gc();
}
}
public class ExceptionHandlingExample {
public static void main(String[] args) {
try {
int result = 10 / 0;
} catch (ArithmeticException e) {
} finally {
}
}
}