Multiple choice qn7 Unboxing means? Converting reference type to value type Converting valuetype to reference type Converting int to string None Reveal answer Fill a bubble to check yourself A Correct answer Explanation Unboxing extracts the value type from a reference type (object) that was previously boxed. It is the explicit conversion from object back to the original value type. Boxing/unboxing have performance implications.