Fibonacci series in C#

Write down a program to generate Fibonacci no series -This is yet another commonly asked problem in programing interviews. Although there are multiple ways of solving this problem. Here I would show you the most simple method to do it. Also this method is efficient from a performance perspective. public static List<int> GetFibonacciSeries(int number) {... Continue Reading →

Good web development blogs and articles

This page contains links to good technical articles and blogs which I found out useful in my website development work in .NET stack and I often use for them reference. How To Style HTML5 Range Slider Across Multiple BrowsersException handling in Sql serverDetecting KeystrokesC# interview question and answers for junior software developer.Web Assembly - simple... Continue Reading →

Sum of digits of a number in C#

This is one of the most commonly asked questions in programming contests and also interviews. How to find sum of the digits of an integer number. Here is the solution : The function SumOfDigits accepts an integer number as an input parameter. Here first we take the absolute value or |number| so it will accommodate... Continue Reading →

Create a free website or blog at WordPress.com.

Up ↑