In my interview on a IT Services & Consulting Company, the interviewer has asked about the following situation of inheritence. At first i couldn’t recollect it. But after coming back in my home, i have tried it out. The scenario was there are two interfaces IWheel and IMeters with same method signature declared inside it, […]
Read more โMonth: June 2010
Stack & Heap (Storage of Value Types and Reference Types)
As i have informed in my previous article, In an IT Services compnay interviewer has asked me about the Difference between value types and reference types in .NET. I have conveyed that Value Types are stored in “Stack” (Datastructure for Memory Management Technique) and Reference Types are stored in “Heap”. He immediately asked me why […]
Read more โReverse an Integer Value in C# (Used No Built in Functions)
Today i have attened an IT Services Company interview, where i was been asked to write the code for Reverse an Integer Value in C# with out using any Built In functions. Here is the code i formulated in my mind. Go through it. Results Kudos!!! I hope it will defenitly be useful to some […]
Read more โ.NET Remoting and Protocol support.
In the technical interview the interview panel asked me about the .NET Remoting supported protocols. Even though i have worked few applications myself in 2,3 year back i was not been able to recollect everything. So i said hey it will support only “TCP” right, i think they might have stunned about my deepness about the […]
Read more โSOAP – Protocol or Message Exchange Pattern
In a recent interview I have been asked What is SOAP? Is it a Protocol or Message Pattern. It’s stupid that i was confused by the question and simply said “Message Exchange Pattern”, to my knowledge As the name states it’s a Protocol. Message Exchange Pattern(MEP) is part of a SOAP, where the description of […]
Read more โServer-Activated Vs Client-Activated Objects
Server-activated objects are objects whose lifetimes are directly controlled by the server. Server-activated objects are created by the server only when they are needed. They are created when the client invokes the first method on that proxy. Singleton is one of activation modes for server-activated objects. Singleton objects are objects for which there will always […]
Read more โ