Introduction In this article, I will discuss how can we improve SQL query performance. Several times you have seen your SQL stored procedure or query getting too much slow. which is one of the primary reasons for your application slowness. So in this article, I will discuss a few easy SQL query optimization steps by which you can improve your SQL…
Helpful Steps For GitHub Basics For Beginners | Day 1
Introduction Here I will discuss about one of the major version control tools. Version control tool is one of the most needed software during application development. Here I will discuss GitHub basics for beginners with some GitHub basic commands. Why we need the version control tool The version control tool is used to track the changes in the code. Using…
Find the rank of an array using c#
Introduction In this article, I will discuss how to find the rank of an array using C#. Description Here I will discuss how to determine the rank of an array, Rank of an array means how to state the dimension of an array. Here we will perform using C#. C# has a predefined Rank property by which we can find…
When to use abstract class and interface with real time example
Introduction Hi guys, here I will discuss when to use abstract class and interface in real-time. This is one of the terrible questions in every C# and JAVA interview. when to use abstract class and interface Suppose we have a school application product, in that product we have some common methods like GetStudentInfo, GetFacultyInfo which is applicable for all the…
Named parameter in C#
Introduction In this article I will discuss about named parameter. Now-a-days in most of the interview you will get this question. Implementation When we are passing some parameter to methods that time we have to remember the parameter orders, because if the parameter execution order will not same as per the passed sequence, then it will cause of the error.…