📚 Practice Mode
Advanced Java Programming Quiz
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
Given: class CardBoard { Short story = 5; CardBoard go(CardBoard cb) { cb = null; return cb; } public static void main(String[] args) { CardBoard c1 = new CardBoard(); CardBoard c2 = new CardBoard(); CardBoard c3 = c1.go(c2); c1 = null; // do Stuff } } When // doStuff is reached, how many objects are eligible for GC?
- 0
- 1
- 2
- Compilation fails
- It is not possible to know
- An exception is thrown at runtime