Multiple choice qn6 Boxing means Converting reference type to value type Converting value type to reference type converting int to string none Reveal answer Fill a bubble to check yourself B Correct answer Explanation Boxing converts a value type (like int, float) to a reference type (object) by wrapping it in an object. This allows value types to be treated as objects when needed. The reverse process is unboxing.