Multiple choice technology programming languages

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

  1. Overriding

  2. Garbage Collection

  3. Assemblies

  4. Serialization

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

Garbage Collection is .NET's automatic memory management technique that reclaim memory from objects no longer in use, preventing memory leaks. Overriding is about polymorphism, Assemblies are deployment units, and Serialization converts objects to streams.