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

Name some string escape sequences in c#.

1 Answers  


can you create a function in c# which can accept varying number of arguments

1 Answers   Cognizant,


Explain dataset.acceptchanges method in .net?

1 Answers  


How can you sort strings in array that are passed to method as arguments?

1 Answers  


What is null propagation c#?

1 Answers  


why instance? what are the uses of instance?

3 Answers   Choice Solutions,


What do you mean by a windows process in regards to memory allocation?

1 Answers  


Differentiate between method overriding from method overloading with its functionality?

1 Answers   Siebel,


State two different types of access modifiers.

1 Answers  


what is CSharp

6 Answers  


What are the keywords used to pass parameters to the base class and how do I invoke other constructors.

3 Answers  


What is the C# syntax to catch any possible exception?

1 Answers   Siebel,


Categories