Introduction In earlier post we have discussed about the Delegates, a delegate holds the reference of a method. As the name suggests, a Multicast delegate…
Introduction Extension Methods allow user to add additional feature or methods to existing class without creating a new derived type. Before diving into extension method,…
Introduction In C#, You can use more than one catch block with the try block to handle different types of exceptions means each catch block…
Get all prime number for the given number using Sieve of Eratosthenes algorithm For example: Input8 Output2, 3, 5, 7 Solution:
Write a program to get the prime factor of given number. for example: Solution:
Three numbers can be said as Pythagorean Triplet when a>b>c and a2 + b2 = c2. Write a program to determine the given numbers set…
Equilibrium index is an index when the sum of elements at lower indexes is equal to the sum of elements at higher indexes. Write a…
Write a program to accept the list of strings and prints them, one per line, in a rectangular frame. For example: Solution:
Write a program to accept the number and returns a list of its digits. For example Solution: