1)

What are the differences between Boxing and Unboxing?


A) 'Boxing' is an implicit conversion of value type to reference type and 'Unboxing' is an explicit conversion of reference type to value type.

B) ‘Boxing’ is the process of converting a reference type to value type and ‘Unboxing’ is the process of converting value type to reference type

C) ‘Boxing’ is an explicit conversion and ‘Unboxing’ is an implicit conversion

D) Both ‘Boxing’ and ‘Unboxing’ we need implicit conversion

Answer:

Option A