About Garbage Collector?

Answers were Sorted based on User's Feedback



About Garbage Collector?..

Answer / sayeed

Garbage collection is an in deterministic process Associated
with CLR. It is used to release the managed free Objects
that are no more refrenced.
But there might be scenarios in which we need to release
certain resources held by an object (like a database
connection) once the object is no longer in use.

We have destructors in C#.C# destructors are nothing but
finalize methods in disguise, with a call to base class's
finalize method.

As we know, finalize method is called during garbage
collection by garbage collector. Hence, we cannot rely only
on C# destructors to explicitly release resources as
finalize methods on objects may never be called altogether
(if the program terminates abnormally) or might be called
only when the program terminates (in a normal way).

Hence it is always a good practice to implement IDisposable
interface in such cases and to write code to release
resources explicitly in the Dispose() method.In that case we
have to use GC.SuppressFinalize() method.

Is This Answer Correct ?    2 Yes 0 No

About Garbage Collector?..

Answer / seshu

garbage collection is a form of automatic memory management.
The garbage collector attempts to reclaim garbage or memory
used by objects that will never be accessed or mutated again
by the application.

Is This Answer Correct ?    0 Yes 0 No

About Garbage Collector?..

Answer / sivaprasad

i)GarbageCollector will take care about Automatic Memory
Management it will mark the objects which has Referrence
Count is Zero.
ii)One Background Thread running in the Application with
Normal Priority And Marking The Objects Which has Referrence
Count is Zero.when there is no Applications Threads Are
Running it will Take High Priority.
iii)And this Garbage Collector Will Take Care About
"Circularreferrences"(means One Pair Of Objects Referring To
Each Other)

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Why we use asp.net for website development?

0 Answers  


What is difference between session and viewstate?

0 Answers  


Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?

2 Answers   Siebel Systems,


What is the difference between GridView and Repeater controls in ASP.NET?

0 Answers  


What is Forms Authentication in ASP.NET?

0 Answers  






Differentiate an ADO.NET Dataset and an ADO Recordset with its functionality?

3 Answers   Siebel,


Which control would you use if you needed to make sure the values in two different controls matched?

2 Answers  


1.What r collections? 2.What is .pdb file? 3.Is it possible to provide access to users in master page? 4.What is dirty n Phantom Read(SQL)? 5.What r different isolation levels(SQL)? 6.How to set authentication mode in web.config file?

0 Answers   TCS,


How do I use a proxy server when invoking a web service?

0 Answers  


if u r projet consist of 4 people means how can u manage the file

10 Answers   Mind Tree,


Is it possible for me to change my aspx file extension to some other name?

0 Answers  


How can you handle exceptions in asp.net?

0 Answers  


Categories