Skip to content

Category Archives: Difference Between

Boxing and unboxing is an important concept in C#. C# Type System contains three data types: Value Types (int, char, etc), Reference Types (object) and… Read More
A Delegate is an object which refers to a method or you can say it is a reference type variable that can hold a reference… Read More
Unlike C/C++ Character arrays and Strings are two different things in Java. Both Character Arrays and Strings are a collection of characters but are different… Read More
Java is a pure OOPS concept based programming language. Hence in Java, all the variables, data and the statements must be present in classes. These… Read More
Smoke Testing is a type of testing which is done to assure that the acute functionalities of the program is working fine. It is also… Read More
Prerequisite – Coupling and Cohesion  Cohesion: Cohesion is the indication of the relationship within the module. It is the concept of intra-module. Cohesion has many types… Read More
Regression Testing: Regression Testing is a type of software testing, which is used to verify that modifications in the software or the environment have not caused… Read More
This article focuses on discussing the differences between procedural and object-oriented programming. Procedural Programming Procedural Programming can be defined as a programming model which is… Read More
Generally, when the system/application does not act as per expectation or abnormally, we call it’s an error or it’s an fault and so on. Many… Read More
Implicitly Typed Local Variables – var are those variables which are declared without specifying the .NET type explicitly. In implicitly typed variable, the type of… Read More
Manual Testing: Manual testing is a type of testing in which we do not take the help of any tools (automation) to perform the testing.… Read More
Strings are defined as an array of characters. The difference between a character array and a string is the string is terminated with a special… Read More
= operator The “=” is an assignment operator used to assign the value on the right to the variable on the left.  For example: a… Read More
There are three types of variables in Java: Local Variables Instance Variables Static Variables The Local variables and Instance variables are together called Non-Static variables.… Read More
In C#, SortedList is a collection of key/value pairs which are sorted according to keys. By default, this collection sort the key/value pairs in ascending… Read More

Start Your Coding Journey Now!