What is Garbage Collection in .Net? Garbage collection process?
Answers were Sorted based on User's Feedback
Answer / pradeep jagadeesan
Garbage collection is a least priority thread, which will
collect unused objects from memory.
Pradeep Jagadeesan
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / guest
The process of transitively tracing through all pointers to
actively used objects in order to locate all objects that
can be referenced, and then arranging to reuse any heap
memory that was not found during this trace. The common
language runtime garbage collector also compacts the memory
that is in use to reduce the working space needed for the heap.
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / latha
Garbage collection automatically allocates memory.we forgot
to release this object.Its releases.
| Is This Answer Correct ? | 2 Yes | 5 No |
In code behind class, name the type of code found. Is it the server side code or client side code?
Which server tag comes from server when we submit any data
Integer & struct are value types or reference types in .NET?
What is Polymorphism? How does VB.NET/C# achieve polymorphism?
What is the use of gacutil.exe?
How can you clean up objects holding resources from within the code?
Value type & data types difference. Example from .NET.
Explain how do assemblies find each other?
What are the types of assemblies in .net?
What is Method Overriding? How to override a function in C#?
A developer company sends dlls to the client. Some client is not happy current functionality, so request some modification. Developer made some changes and send new dll to all clients. Some client is happy with old version, tell me minimal change to so that neither clients get affected?
What is the intermediate language between asp and asp.net1.0?