Nice slide. Very informative. [slideboom id=29221&w=425&h=370]
Read more โMonth: June 2010
New .NET Books to My Collection
I have bought few books for reference purpose. It’s true that there is lot of ebooks to download, but i always prefer having my own personal copy in the shelf. Reading books is quite interesting when we have a published copy in hand, we can mark what we want with red ink. I do have […]
Read more โC# Tricks – Evaluate “1”+2+4 and 2+5+”8″
What does “1”+2+4 evaluate to? Wait! Wait! do not get in to conclusion that’s it’s an aptitude, number series question. It actually a question about the result of this operation, if you consider in C#. “1” a string is added with 2 and 4 which are integers. So what would be the result if you […]
Read more โBack-2-Basics: Diff Types of Joins in SQL Server
Back to Basics – Series :: Cool links for getting to know about the Different Types of Joins in SQL Server. http://www.c-sharpcorner.com/UploadFile/raj1979/SqlJoins10012008164642PM/SqlJoins.aspx http://programming.top54u.com/post/Types-of-Joins-in-Sql-Server-2005.aspx Have Fun!! Happy Coding!!!
Read more โSQL Query for ‘n’ th highest salary of employee table
IGate Recruitment, in written test has asked about to write an sql query for finding ‘n’ th highest salary from empolyee table. Here is a quick solution Query for Creating Test Table and inserting dummy data. SQL Query for Retrieving the ‘n’ th largest salary from EMPLOYEE table.
Read more โAbstract vs Interface (C#): A Simple Tabular Index
I found that lots of people our there are confused between abstract and interface, including me :-). So i formulated this simple table which list most of the differences between them. Index Abstract Interface 1 Cannot instantiate(not possible to create object of an abstract class) Cannot instantiate. (not possible to create object of an interface) […]
Read more โ