Showing posts with label Comparison. Show all posts
Showing posts with label Comparison. Show all posts

Friday, 3 June 2016

Difference Between MVC and webforms

The main advantages of The Official Microsoft ASP.NET Site MVC are: Enables the full control over the rendered HTML. Provides clean separation of concerns(SoC). Enables Test Driven Development (TDD). Easy integration with JavaScript frameworks. Following the design of stateless...

Monday, 23 May 2016

Abstract Class vs interface in Csharp

Abstract Class Abstract Class is a class that is used as a base class and contains common methods that can be defined by class that inherits from this Base Class .  We can only inherit abstract class But We cannot instantiate Abstract Class . Abstrac classes contains both incomplete & complete methods . Means it can contains functions with definitions as well as abstract...

Sunday, 22 May 2016

Difference Between Generic and Collections in C#

Difference Between Array - Generic - Collections in Csharp Array : An Array is Fixed Size Data Type . For Storing data in Array you need to define the size of array and Also Type of Array ( int, string , float etc ) Depending on Memory Allocation Data Types are of Two Types - Value Type  Reference Type  See Difference Between Value Type and Reference Type in...

Thursday, 20 August 2015

Difference Between Stored Procedure and Functions Sql

Stored Procedure and Functions   1. Function Must Return Value    For Stored Procedure it's Not Must to return value it's optional  2. 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  But Function is compiled and executed...

Difference Between Views And StoredProcedure Sql

Stored Procedure Vs Views 1. Stored Procedure are collection of pre-executed sql Statements that accepts parameters as input and depending on input parameters passed gives the Output Result Views Act like Virtual Tables That Contains set of Rows and Columns from multiple original table of Database according to defined Query Commands 2. Stored Procedure Cannot be Used as...

Tuesday, 11 November 2014

Difference Between ViewState and Session in Asp.Net

"View State and Session "   The Two main State Management things used in Asp.net Web applications . We cannot even think of an application without ViewState and Session . So today i decided to gave an overview of what is the difference between viewstate and session why these two terms exist and what are their usage To clearify this difference i am giving some points below 1....

Tuesday, 18 June 2013

Difference Between C programming and C++ programming Language

DIFFERENCE BETWEEN PROCEDURAL AND OBJECT ORIENTED PROGRAMMING 1.         C Follows Procedural Programming Approach . It is also called  Structured programming approach. In Structured programming approach  the program has well defined structure...