RSS

Author Archives | Ujwal Manandhar

Ujwal Manandhar - who has written 4 posts on eXclusiveMinds.


Contact the author

General Interview Questions

Sunday, January 24, 2010

0 Comments

Given a integer array which contains one odd repeated number and rest are even repeated numbers. Find the odd repeated number.

Continue reading...

Sorting Algorithms

Wednesday, January 20, 2010

0 Comments

Overview of many sorting techniques and sample code.

Continue reading...

SQL Interview question

Saturday, January 9, 2010

0 Comments

Question: Given table with schema Student(studentId,CourseId,marks) if there are 50 students and 10 courses then find the students with second highest marks in each subjects?

Continue reading...

Example showing Extension Methods in C#

Sunday, January 3, 2010

4 Comments

Extension Method is really a cool stuff. We can simply add the additional method to any object without knowing anything about that object.Let’s say we want a method for string object which will reverse the string then you can choose extension method to do the thing.

Continue reading...