🎴 Flashcard Mode
C# and Java Programming Fundamentals
Card1 / 20
Mastered0
Review0
QuestionClick to flip
A garbage collected object can be reached again.
AnswerClick to flip back
A
False
💡 Explanation:
Once an object is garbage collected, it becomes unreachable and cannot be resurrected. The garbage collector frees the memory and the object no longer exists in the heap. Any references to it become invalid and attempting to use them would cause errors.