Differentiate UnBoxing and boxing
Write the main difference between UnBoxing and boxing.
Expert
The process is called as boxing when the value type is converted to the object type while, when the object type is converted to the value type, the process is called as unboxing.
The Boxing and unboxing facilitates value types to be treated as objects. Boxing the value type packages it inside the instance of an Object reference type. It allows a value type to be stored on a garbage collected heap. Unboxing extracts a value type from an object. This example shows an integer variable i is boxed and allocated to object obj.
Example:
int i = 123;
object obj = i; /* Thi line boxes i. */
/* The object obj can then be unboxed and assigned to integer variable i: */
i = (int)obj; // unboxing
Define the term “Array”.
What is a behavior of the Web browser when it receives the invalid element?
What do you mean by the term MISL CODE? Describe in brief.
Explain abstract classes and List the different characteristics of an abstract class?
Describe the term Address, Binding and contract for WCF Service?
What is the role of the DynamicPopulateExtender control?
Describe the various types of work flow?
Explain the various Visual Basic features which support LINQ?
Specify advantages of the XML schemas over DTD.
What are HTTP handlers in ASP.NET?
18,76,764
1923056 Asked
3,689
Active Tutors
1415740
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!