Author Archives: c# and .NET Interview questions

About c# and .NET Interview questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview.

MVC interview questions with answers video: – What is Web API how to implement the same?

WEB API has now become the talk of the town. We have seen recently in many MVC interviews people ask about this question. Below are two great ASP.NET MVC ( Model view controller ) Web API videos one which talks … Continue reading

Posted in About MVC Web API, Csharp interview questions, Model view controller interview questions with answers, progarmming interview questions, REST Web API, Web API interview questions | Tagged , , , , , | Leave a comment

C# and .NET interview questions with answers – What is Nuget?

Many times you would like to use open sources like Nunit, Log4net, Jquery , Ninject etc  in  your project. To do the same you need to search them, download the DLL’s, check which is a proper version, add it to … Continue reading

Posted in .NET and C# training, .Net Interview Questions, .NET interview questions with answers, C# interview questions, Csharp interview questions, progarmming interview questions, What is Nuget | Tagged , , , , , , | Leave a comment

23 important SQL Server interview questions on Database concepts

23 important SQL Server interview questions on Database concepts This section will cover the most asked SQL Server interview questions by the interviewer so have a look on the following and do revise it when ever you go for the … Continue reading

Posted in .NET and C# interview questions and answers, .NET and C# training, .Net Interview Questions, C# interview questions, Csharp interview questions, Interview question, programming interview questions, SQL Server, SQL server training | Tagged , , , , , | Leave a comment

ASP.NET interview questions: What is impersonation in ASP.NET?

By default, ASP.NET executes in the security context of a restricted user account on the local machine. Sometimes you need to access network resources such as a file on a shared drive, which requires additional permissions. One way to overcome … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Csharp interview questions, impersonation, programming interview questions | Tagged , , , , , , | Leave a comment

Algorithm interview questions and answers: – How does selection sort algorithm works?

Selection sort is the most simples sorting algorithm.  It finds the lowest value from the collection and moves it to the left. This is repeated until the complete collection is sorted. Below is a pictorial representation of how selection sort … Continue reading

Posted in Algorithm interview questions, c# data structure interview questions, Csharp interview questions, Data structure interview question, How does selection sort algorithm works, Java algorithm interview question, Java data structure interview questions, programming interview questions | Tagged , , , , , , , , | Leave a comment

Algorithm interview questions and answers: – What is inserted sort algorithm?

In inserted sorted algorithm we compare the current element value with the previous element value. If the current value is smaller than the previous value we swap. This continues until the complete list is sorted. Let us try to understand … Continue reading

Posted in Algorithm interview questions, c# algorithm interview questions, c# data structure interview questions, Csharp interview questions, Data structure interview question, Inserted algorithm interview question, Java algorithm interview question, Java data structure interview questions, programming interview questions | Tagged , , , , , , , , | Leave a comment

.NET interview questions and answers: -How can you define a property read only for external world and writable in the same assembly?

Let’s us first try to understand this c# / .NET interview question and answers. Let’s say if you have a class called as “Customer” with a property “CustomerCode”.Now you want that anyone can read from the “CustomerCode” property but this … Continue reading

Posted in .NET and C# training, .NET interview questions and answers, Csharp interview questions, define a property read only for external world, programming interview questions, writable in the same assembly | Tagged , , , , , | Leave a comment

Algorithm interview questions and answers: – Can you write code for bubble sort algorithm?

In some of the bigger companies like google , Microsoft etc  algorithm has been a favorite topic during c# interviews. So we are starting with a dedicatedseries which mainly targets how to write these algorithms in c#. So let’s start … Continue reading

Posted in Algorithm interview question, Bubble sort algorithm interview questions, c# algorithm interview questions, c# data structure interview questions, Csharp interview questions, Data structure interview question, Java algorithm interview question, Java data structure interview questions, programming interview questions | Tagged , , , , , , , , , | 1 Comment

SQL Server interview questions and answers: – What is difference between “ReportServer” and “ReportServerTempDb”?

Reporting Services uses two databases at the backend, “ReportServer” and “ReportServerTempDB”. “ReportServer” database is the core database. It stores data like Report Schema, Report meta-data, report data sources, credential for report data sources etc. “ReportServerTempDB” stores cached copy of report … Continue reading

Posted in Csharp interview questions, programming interview questions, ReportServer, ReportServerTempDb, SQL Server interview questions and answers, SQL server training | Tagged , , , , , | Leave a comment

.NET interview questions and answers: – How can we create a windows service using .NET?

Windows Services are long-running executable applications that runs at the background, which has the ability to start automatically when the computer boots and also can be manually paused, stopped or even restarted. Following are the steps to create a service:- … Continue reading

Posted in .NET and C# training, .NET interview questions and answers, c# and .NETinterviews, Csharp interview questions, programming interview questions, windows service using .NET | Tagged , , , , , | Leave a comment