I\'m new to programming,
As per MSDN,
Boxing is the process of converting a value type to the type object or to any interface type impleme
Yes, value type elements (1, 'c' and 12.25) will be boxed when placed into array of object[].
object[]
String "abc" will be placed as is since it is reference type object.