Nitin Sharma has Published 50 Articles

Difference between Method Overriding and Method Hiding in C#

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 09:13:22

In C# there are two mechanisms for redefining or providing the new implementation of a method of parent class by its child class and these two mechanisms are known as Method overriding and Method hiding. Now on the basis of how method re-implementation is done we can distinguish between both ... Read More

Difference between SortedList and SortedDictionary in C#

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 09:09:16

Both SortedList and SortedDictionary in C# are the types of data structures used for data storage, now on the basis of characteristics and nature we can distinguish between both of them.Following are the important differences between SortedList and SortedDictionary.Sr. No.KeySortedListSortedDictionary1Memory organizationSortedList requires low memory for storage hence the memory status ... Read More

Difference between Simultaneous and Hierarchical Access Memory Organisations

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 09:05:02

As we know in context of computer/system, the main key feature on which the whole performance get dependent is Memory. It is memory and its allocation which make the system to perform fast and efficient. Now on the basis of organizing of this memory in the system, we can distinguish ... Read More

Difference between Simple and Complex View in SQL

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 09:02:15

Before discussing on Simple and complex, first we should know what is View. A View is the logical virtual table created from one or more tables which can be primarily used to fetch the columns from one or more different tables at a time. On the basis of tables involved ... Read More

Difference between Set and UnOrderSet in C++

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 09:00:59

In C++ both Set and UnOrderSet are the type of data structures which are used to store the data for easy accessing and insertion. On the basis of characteristics of both these data structures we can distinguish between Set and UnOrderSetFollowing are the important differences between Set and UnOrderSet −Sr. ... Read More

Difference between Set and MultiSet in C++

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 08:59:29

In C++, both Set and MultiSet are the type of data structures which are used to store the data for easy accessing and insertion. On the basis of characteristics of both these data structures we can distinguish between Set and MultiSet.Following are the important differences between Set and MultiSet −Sr. ... Read More

Difference between scanf() and gets() in C

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 08:53:21

In C language both scanf() and gets() functions are defined to get input from external source and pass to system as input. Now there is some characteristics difference between both the functions.Following are the important differences between scanf() and gets() in C −Sr. No.Keyscanf() functiongets() function1DefinitionThe scanf() function can read ... Read More

Difference between Class and Structure in C#

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 08:36:53

In order to differentiate between Class and Structure, we have to first understand that both structure and class seems to be equivalent in the context of holding and defining the data. Both of these could define as well as hold some default values in their data members. But if we ... Read More

Difference between bindParam and bindValue in PHP

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 08:30:50

Both bindParam and bindValue are the inbuilt functions of PHP which are used for accessing database records by mapping variable to the value in PHP data objects statement also known as PDOStatement which is nothing else but is an abstraction layer for database queries.Following are the important differences between ASP ... Read More

Difference between ASP and ASP.NET

Nitin Sharma

Nitin Sharma

Updated on 09-Jun-2020 08:29:55

Both ASP and ASP.NET are the widely used languages for application and mainly the frontEnd development. Both the languages used for dynamic generation of web pages. The content generated through server-side scripting is then sent to the client’s web browser.Following are the important differences between ASP and ASP.NET.Sr. No.KeyASPASP.NET1DefinitionASP or ... Read More

Advertisements