Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Hi to everybody. Lastweek i had taken an interview on c#.
They ask what is boxing & unboxing, Masking.Please tell the
answer and it is useful for me.

Answers were Sorted based on User's Feedback



Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / saubhagya

Boxing:converting from value types to reference type is
known as boxing.
Unboxing:Converting from reference types to value type is
known as unboxing.

Is This Answer Correct ?    10 Yes 1 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / mr. d

class Test
{
static void Main()
{
int i = 1;
object o = i; // boxing
int j = (int) o; // unboxing
}
}

Is This Answer Correct ?    10 Yes 1 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / swaminathan

Masking is the process of Changing BITS in a BYTE

Is This Answer Correct ?    2 Yes 1 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / chandu

Boxing:converting from value types to reference type is
known as boxing.
Unboxing:Converting from reference types to value type is
known as unboxing.

boxing ex: int i=1;
obj o=i;

unboxing ex: int i=1;
obj o=i;
int j=int o;

Is This Answer Correct ?    1 Yes 0 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / sdfasd

Boxing:converting the value type into reference type is called as boxing
during boxing typecasting can be done implicitly.
during boxing the values are copied from method stack to managed heap.
Unboxing:
converting the reference type into value type is called as unboxing
during unboxing typecasting can be done explicitly.
during unboxing the values are copied from managed heap to methodstack.

Is This Answer Correct ?    1 Yes 0 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / sravanthi

BOXING:We can translate value type to reference type.
UN BOXING:We can translate reference type to value type.

Is This Answer Correct ?    2 Yes 2 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / raj

Boxing: Implicitly converting value type to object type

Eg: int i=1;
object obj=i;

UnBoxing:Explicitly Converting object type to value type

Eg: int j=(int) obj;

Is This Answer Correct ?    0 Yes 0 No

Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, M..

Answer / kishore

Boxing : The process of converting value type to reference
type is konwn as boxing

Unboxing: The process of converting Reference type to value
type is known as Unboxing

Masking: Its is the process of changing bits in a byte.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Sharp Interview Questions

The int maps to which C# keyword in .NET type?

0 Answers   Siebel,


What is the use of private constructor in c#?

0 Answers  


What is meaning of type safety in c#?

0 Answers  


What does this keyword mean in c#?

0 Answers  


What is string in c# net?

0 Answers  


What's the implicit name of the parameter that gets passed into the set method/property of a class?

0 Answers  


Tell me the difference between call by value and call by reference.

0 Answers   NIIT,


What are types in c#?

0 Answers  


What is anonymous types in c#?

0 Answers  


Define parsing?

0 Answers  


What do you mean by winforms in c#?

0 Answers  


What is the syntax for calling an overloaded constructor within a constructor?

0 Answers  


Categories