가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

Java Garbage Collection 면접 질문과 답변

Ques 11. What is the Eden Space in the Young Generation of the Java heap?

The Eden Space is the part of the Young Generation where new objects are initially allocated. Objects surviving garbage collection in Eden are moved to the Survivor Spaces.

도움이 되었나요? Add Comment View Comments
 

Ques 12. Explain the purpose of the Survivor Spaces in the Young Generation.

The Survivor Spaces (S0 and S1) in the Young Generation are used to hold objects that survive one garbage collection cycle in the Eden Space. Objects can be promoted to the Old Generation from the Survivor Spaces.

도움이 되었나요? Add Comment View Comments
 

Ques 13. What is the role of the Old Generation in the Java heap?

The Old Generation is the part of the heap that holds long-lived objects. Objects that survive multiple garbage collection cycles in the Young Generation are eventually promoted to the Old Generation.

도움이 되었나요? Add Comment View Comments
 

Ques 14. Explain the concept of garbage collection pause times.

Garbage collection pause times refer to the periods during which application threads are stopped while the garbage collector performs its tasks. Minimizing pause times is essential for maintaining application responsiveness.

도움이 되었나요? Add Comment View Comments
 

Ques 15. What is the difference between garbage collection and memory leak?

Garbage collection is the process of automatically identifying and reclaiming unused memory, while a memory leak occurs when the application fails to release memory that is no longer needed, leading to increased memory consumption over time.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.