Monday, December 19, 2011

.NET interview questions: - Below are simple two classes Class1 creates objects of Class2 and Class2 creates object of Class1, What will happen?

See the following snap code: -

class Class1 
{
 Class2 o = new Class2();
}
class Class2
{
 Class1 o = new Class1();
}

Answer:

Both the classes are creating objects of each other due which the object will pile up in the memory and lead to "StackOverFlowException". Below is the error image which is displayed once the memory is overused.


See the following video on regular expressions along with some practical demonstrations as follows: -



Visit to get more stuff on  interview questions and answers for .NET

Regards,

Also visit for more author’s other blogs on Most asked .NET interview questions

No comments: