1. Default Initialization
Gotcha:
Class member variables are automatically initialized with default values (e.g., int to 0, boolean to false). However, local variables are not initialized by default and must be explicitly initialized before use. Atte...