COURSE 01 · CORE JAVA · INTERVIEW PREP MODE

Three lines. One interview question.

Run them and watch the memory figure react. This is how every concept here works.
1Person a = new Person("Ada");
2Person b = a;
3a = null;
STACK
a · Person
◆ ref
b · Person
◆ ref
HEAP
PERSON
name = "Ada"
FIG 0Nothing exists yet. Run line 1.
TRACK 01 · JAVA & SPRINGFull prep index →
Stars mark how often a chapter comes up in real interviews: three means almost always. Course Mode, the complete A to Z syllabus, opens after Interview Prep is finished. Progress saves on this device. The prep index shows the whole path; Spring lives in its own course.