Multiple choice technology platforms and products

The .NET framework which provides automatic memory management using a technique called

  1. Serialization

  2. Garbage Collection

  3. Assemblies

  4. Overriding

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

.NET uses Garbage Collection to automatically manage memory allocation and deallocation. The GC periodically scans for unused objects and reclaims their memory, preventing memory leaks and simplifying development.