1.

Select differences between reference type and value type :

1. Memory allocated to Value type is from heap and reference type is from System. ValueType
2. Memory allocated to Value type is from System. ValueType and reference type is from Heap
3. Structures, enumerated types derived from System. ValueType are created on stack, hence known as ValueType and all classes are reference type because values are stored on heap

A. 1, 3
B. 2, 3
C. 1, 2, 3
D. 1
Answer» C. 1, 2, 3


Discussion

No Comment Found