The two traditional forms of literature that describe the character sketch and course of the life of a person are biography and autobiography. Biography is the life history of an individual, written by someone else, whereas the autobiography is an expression of a person's life, written by self. Both of these two presents the view of, what happened in the past where the author lived. These are non-fiction books, written in chronological order, tells a story about the person who made a … [Read more...]
Difference between Biodegradable and Non-Biodegradable Substances
We often counter terms like 'biodegradable' and 'non-biodegradable' in a variety of things and products around us. From household items to the food we eat, basically, everything can be labeled in either of the two categories. So, what is this stuff all about and why is it so important to know the difference between them. Content: Shares Vs Debentures Definition Key Differences Conclusion Definition of Biodegradable Substances The term 'Biodegradable' is used for those things … [Read more...]
Difference between CBSE and ICSE Board
The principal difference between CBSE and ICSE education is that while CBSE is a board, ICSE is an Exam conducted by CISCE. CBSE and ICSE, both are most popular school board formats in India and is widely spread across all states. The subjects offered for study are almost same in these two. As far as the education of children is concerned, many parents are curious and at the same time confused to know which board of education will offer quality education CBSE or ICSE. As the educational … [Read more...]
Difference between Lay-off and Retrenchment
The biggest difference between layoff and retrenchment is that layoff is volatile in nature, i.e. employees are recalled, once the period of layoff is over while retrenchment is non-volatile i.e. that involves full and final termination of services. The employment contract is terminated with the employees by the employer, due to three major reasons which are: (i) the organization is going through the lean period, (ii) initial faulty hiring, (iii) employee shows deviant behavior, which affects … [Read more...]
Difference Between Array and ArrayList in C#
What is an Array An array is a sequential collection of similar data that can be accessed as per the "index". It is the simplest type of data structure in which the elements get stored in a contiguous memory location. In Array, index starts at zero, so to access the first element of an array "numarray", it should be written as numarray[0]. Example of Array in C# Output:- 10 20 30 40 50 What is an ArrayList The ArrayList is a collection of objects of same or different types. The … [Read more...]
Difference Between ref and out parameter in c#
ref (Reference) Parameter "ref" parameter is used to pass the value by reference from actual parameter to formal parameter i.e from callee method to the called method. In C#, a parameter declared with a "ref" modifier is a reference parameter. When you pass parameters by reference, unlike value parameters, a new location is not created for this parameter. Any changes made to the formal parameter will reflect in the actual parameter. Example of ref Parameter As shown in the above program … [Read more...]
Difference Between Write and WriteLine
Write Method Write method resides inside the 'Console' class which itself resides inside the System namespace. The Console class provides basic support for applications that read and write characters to and from the console. The write() method outputs one or more values on the screen without a new line character. This means any subsequent output will be printed in the same line. Example of Write() in C# Output: Car Bus Truck WriteLine Method The WriteLine method also resides inside the … [Read more...]
Difference between Windows and Web Application
Windows Application Windows Application is a user builds an application that can run on a Windows platform. The windows application has a graphical user interface that is provided by Windows Forms. Windows forms provide a variety of controls including Button, TextBox, Radio Button, CheckBox, and other data and connection controls. You can easily design a windows application using an IDE Microsoft Visual Studio using a variety of languages including C#, Visual Basic, C++, J#, and many more. Web … [Read more...]
Difference Between Method Overloading and Overriding
Method Overloading Method overloading, also known as Function overloading or Compile time polymorphism, is a concept of having two or more methods with the same name but different signature in the same scope. There are many programming languages that support this feature: Ada, C++, C#, D, and Java. Example of Method Overloading in C# As shown in the above example, the method 'Polygon' is overloaded 3 times with different method signature, i.e the type or the number of parameters are … [Read more...]
Difference Between Interface and Class
Class Class is a user-defined data type that allows the grouping of data members, methods, properties, and events. A class is nothing but a blueprint that defines data and behaviour. Objects are instances of the class. In C#, classes are defined using the 'class' keyword followed by the class name that contains the body of a class surrounded by curly braces. Every class has a constructor that has the same name as the class and called automatically at the time of instantiating a … [Read more...]