What is the term for transforming a primitive data type into its equivalent wrapper class object?
Explanation
Boxing refers to the process of converting a primitive data type into its corresponding wrapper class object. Wrapping and autoboxing are related concepts, but autoboxing specifically refers to automatic conversion by the compiler. Instantiation is the creation of a new object instance, and encapsulation involves restricting access to data.