Answer
Boxing: value type → converted to object (heap)Unboxing: object → converted back to value type
int x = 10;object obj = x; // boxingint y = (int)obj; // unboxing
int x = 10;object obj = x; // boxingint y = (int)obj; // unboxing