Multiple choice technology web technology

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

Garbage Collection is .NET's automatic memory management system that reclaims memory from objects that are no longer in use. It runs periodically in the background, removing the need for manual memory management. Serialization is for object persistence, Assemblies are deployment units, and Overriding is an OOP concept.