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 βAuthor: Nithin Mohan TK
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 βBack-2-Basics : Largest and Second Largest in an Array(C#)
It’s a basics code, just sharing it since since will be useful for some body, who is in needy. I am just refresing my OOPS and Basic knowledge, just experimenting. Ha ha ha. Advice to guyz, don’t simply copy it, try to understand the logic and do it by yourself. PS: I have tested this […]
Read more β