Java - Memory Management Basics
Given this code:
String s1 = new String("hello");
String s2 = s1;
s1 = null;
System.gc();
Which object is eligible for garbage collection?