Multiple choice Which of the following is/are the example of boxing in C#? object o=255;int x= (int)o; int x=255;object o=x; int i = 255;object o = i;i = Convert.ToInt32(o); both (2) and (3). none of the above Reveal answer Fill a bubble to check yourself D Correct answer Explanation Yes, both are the example of boxing.