Java / JDK, JRE, JVM, JIT
Explain memory leak in Java.
Memory leak in Java refers to a situation where some objects are not used by the application any more, but GC fails to recognize them as unused. As a result, these objects remain in memory indefinitely, reducing the amount of memory available to the application.
More Related questions...