from http://www.programmerinterview.com/index.php/database-sql/clustered-vs-non-clustered-index/ What is the difference between a Clustered and Non Clustered Index? A clustered index determines the order in which the rows of a table are stored on disk. If a table has a clustered index, then the rows of that table will be stored on disk in the same exact order as the... Continue Reading →
ASP.net Interview questions
Q) In what order do the events of an ASPX page execute. As a developer is it important to undertsand these events? INIT, PageLoad, Prerender , UNload. Q) In which event are the controls fully loaded? Page load event guarantees that all controls are fully loaded. Controls are also accessed in Page_Init events but you will see that view... Continue Reading →
c# Interview Questions
What’s the difference between the Debug class and Trace class? Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds. Can you declare an override method to be static if the original method is not static? No. The signature of the virtual method must remain the same. (Note:... Continue Reading →