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 |
Which namespace does it belong to by default?
Can any object be stored in a viewstate in .net?
What is concurrency? How will you avoid concurrency when dealing with dataset?
Explain what is immutability, what is it for and how is it codified?
What exactly is being serialized when you perform serialization in .net?
Can a try block have more than one catch block?
Please explain what are an inheritance, polymorphism, and encapsulation?
for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?
What is reflection in microsoft .net context?
What is singlecall activation mode used for in .net?
What is clr in .net?
What is use of ContextUtil class?