Multiple choice Memory leak is a phenomenon of dynamically allocated memory which is easily reachable memory that remains leaking even after allocation dynamically allocated memory which is not reachable memory that remains leaking even after deallocation Reveal answer Fill a bubble to check yourself C Correct answer Explanation Memory leaks occur when programs allocate memory dynamically but lose all references to it, making it unreachable. The memory remains occupied but cannot be used or freed, causing gradual resource depletion.