Loading
Advertisements

.Net Interview Questions and Answers - Basic & Advanced

SQL best practices for query optimization and increasing performance
Posted By : Manish Banga at 25 February 2015
Updated On : 25 February 2015
Sql performance is the main concern to develop a successful and optimized application. Database performance can be increased by following some tips while designing query.

How to increase the performance of asp.net website?
Posted By : Manish Banga at 25 February 2015
Updated On : 25 February 2015
Writing an ASP.NET application is relatively easy with the use of Rapid Application Development controls however it is just not enough to use. You should use each component wisely to get performance benefit to your ASP.NET Website.

div vs table
Posted By : Manish Banga at 25 February 2015
Updated On : 25 February 2015
While designing html page we generally got confused that whether we should use div or table. Here I have described advantages and disadvantages for both div and table.

What is difference between Stored Procedure and Function?
Posted By : Manish Banga at 01 March 2015
Updated On : 01 March 2015
Function is compiled and executed every time whenever it is called but Stored Procedures are pre-compile objects which are compiled for first time and its compiled format is saved which executes (compiled code) whenever it is called.

ViewData vs ViewBag vs TempData vs Session
Posted By : Manish Banga at 04 March 2015
Updated On : 04 March 2015
ASP.NET MVC offers us four options ViewData, VieBag, TempData and Session for passing data from controller to view and in next request. But now question is that what is the differences between these different type. In this article I have described these differences.

Difference between Temp Table, Table Variable and CTE
Posted By : Manish Banga at 10 March 2015
Updated On : 10 March 2015
To store some data temporarily, you can use either temporary table or table variable or CTE. But what is the suitable option for our scenario. In this article, I will explain the difference between each of them.

Advantages of ASP.NET MVC
Posted By : Manish Banga at 10 March 2015
Updated On : 10 March 2015
Asp.Net MVC is a new framework from Microsoft that sits over standard Asp.Net engine. It is built on top of Asp.Net and uses core features of Asp.Net. This article describes the main features of ASP.NET MVC.

.NET Framework Interview Questions and Answers
Posted By : Manish Banga at 12 March 2015
Updated On : 12 March 2015
In this article, I have explained basic .Net interview questions and answers will help to build your technical skill set and can help you in your interview.

What is JSON?
Posted By : Manish Banga at 18 March 2015
Updated On : 18 March 2015
JSON and XML both are human readable formats and are language independent. They both have support for creation, reading and decoding in real world situations. In this article i have described disadvantages of XML, overview of JSON and advantages of JSON over XML.

What is Lambda Expression?
Posted By : Manish Banga at 22 March 2015
Updated On : 22 March 2015
Lambda expression is one of the features introduced in the C# 3.0. Lambda expression helps you to ease the burden of writing verbose Anonymous Methods. It is a new way to write anonymous method. Actually during compile time all lambda expressions are converted in anonymous method.

jQuery Interview Questions and Answers
Posted By : Manish Banga at 27 June 2015
Updated On : 27 June 2015
In this article, I have explained 100+ jQuery interview questions and answers with examples. I have tried to explain every possible jQuery interview question here that will help you to build your technical skill set and can help you in your interview.

Abstract Class vs Interface - Real time scenarios to decide when to use abstract class and when to use interface.
Posted By : Manish Banga at 24 January 2016
Updated On : 24 January 2016
The concept of Abstract classes and Interfaces is a bit confusing for beginners of Object Oriented programming. In this article I will describe what is the main difference between interface and abstract class? And what could be the real time scenarios to use abstract class and interface?

MVC TempData – Peek vs Keep
Posted By : Manish Banga at 26 January 2016
Updated On : 26 January 2016
Most of the MVC developer knows that TempData is used to preserve data for a single request but reality is that TempData can pass data for next request also. In this article we will discuss how to persist data with TempData using Keep and Peek method as well we will also see the difference between Keep and Peek method.

var vs dynamic vs object
Posted By : Manish Banga at 08 February 2016
Updated On : 08 February 2016
C# provides three types object, var and dynamic to store data of any type. In this article, I have tried to explain difference between these 3 and scenarios to use them.

int.Parse() vs Convert.ToInt32() vs int.TryParse()
Posted By : Manish Banga at 27 April 2016
Updated On : 27 April 2016
This is one of the frequently asked C# interview question for the beginners. In this article I will explain differences among int.Parse(), Convert.ToInt32() and int.TryParse(). I will also describe that in which case which one should be used.

Constant vs ReadOnly vs Static in C#
Posted By : Manish Banga at 02 June 2016
Updated On : 02 June 2016
This is one of the frequently asked C# interview question for the beginners. Constant, ReadOnly and Static are keywords that are nearly the same in behavior but confusing. In this article I will explain differences among const, readonly and static keywords. You will be able to understand their different behavior and operation.

string vs System.String in C#
Posted By : Manish Banga at 09 January 2017
Updated On : 09 January 2017
This is one of the frequently asked C# interview question for the beginners. This is very simple but confusing question during interview. In this article I will explain difference between string and System.String in C#.

Browse by Labels

Advertisements

Recent Articles

Popular Articles

Free ebook

Like us on Facebook

Advertisements