Problem Statement
What is a resource leak in context of file I/O or other system resources?
Explanation
When system resources such as file handles, database connections or sockets are not properly closed, the program can exhaust these resources over time, leading to errors or degraded performance. Proper cleanup via finally blocks or try-with-resources is key.