What will be the output of follwing code:- [ don't execute it , just read and try to asnwer ]
public class ObjectTest {
ObjectTest myObject = new ObjectTest();
public static void main(String[] args) {
ObjectTest myObject = new ObjectTest();
System.out.println(myObject);
}
}