JAVA PROGRAMMING INTERVIEW CHEAT SHEET
Term Definition
JVM Executes bytecode.
Bytecode Compiled Java source code for JVM.
JDK Full development kit with compiler, JRE, etc.
JRE Runs Java programs but doesn't compile.
Garbage Collector Reclaims unused memory.
Finalize Method Called before object destruction.
Example: Finalize Method
class Example { protected void finalize() throws Throwable { [Link]("Object is being
garbage collected"); } }