Which type of variables are under the control of garbage
collector?

Answers were Sorted based on User's Feedback



Which type of variables are under the control of garbage collector?..

Answer / kiran kumar reddy

http://www.codeproject.com/dotnet/Primitive_Ref_ValueTypes.asp

Is This Answer Correct ?    1 Yes 0 No

Which type of variables are under the control of garbage collector?..

Answer / chiyan

reference will be stored in heap memory,heap is accessible
to garbage collector

Is This Answer Correct ?    1 Yes 0 No

Which type of variables are under the control of garbage collector?..

Answer / anand g

All types of objects and variables under the process of the
framework.

Is This Answer Correct ?    1 Yes 1 No

Which type of variables are under the control of garbage collector?..

Answer / sujai cn

The objects which are in the heap , are under the control
of garbage collector.garbage collector is low weight
process which will run in background & clean the heap
(remove the objects from the heap which dont have the
reference , i.e, not reachable object) there are many
algorithms designed to monitor when & how long the garbage
collector has to run.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Why can?t you specify the accessibility modifier for methods inside the interface?

3 Answers   Mind Tree, Siebel Systems,


What is this keyword in C#?

0 Answers  


Is c and c# the same?

0 Answers  


What is a predicate in c#?

0 Answers  


What is difference between comparable and comparator?

0 Answers  


What is the difference between virtual method and abstract method?

0 Answers  


What is a linked list c#?

0 Answers  


What are the different types of delegation?

0 Answers  


Difference between dispose and destructor?

3 Answers   TCS,


What is the difference between abstract class and interface in c#?

0 Answers  


Is int reference type c#?

0 Answers  


What is the solution if you need to manipulate sets of items?

0 Answers  


Categories