Nitin Sharma has Published 47 Articles

Difference between ArrayList and HashSet in Java

Nitin Sharma

Nitin Sharma

Updated on 18-Sep-2019 11:35:45

12K+ Views

HashSet and ArrayList both are some of the most important classes of the Java Collection framework.The following are the important differences between ArrayList and HashSet.Sr. No.KeyArrayListHashSet1ImplementationArrayList is the implementation of the list interface.HashSet on the other hand is the implementation of a set interface.2Internal implementationArrayList internally implements array for its ... Read More

Difference between Boxing and Unboxing in C# programming.

Nitin Sharma

Nitin Sharma

Updated on 17-Sep-2019 11:06:03

471 Views

C# provides two methods to link value type to reference type and vice e Versa. These two methods for linking are named boxing and unboxing where Boxing is used for the conversion of the value type to an object type while Unboxing refers to the conversion of the object type ... Read More

Difference between Bootstrap and AngularJS.

Nitin Sharma

Nitin Sharma

Updated on 17-Sep-2019 10:36:38

1K+ Views

Along with many other frameworks for front end development AngularJs and Bootstrap are two well-known frameworks in the market.AngularJS is widely used for single page application development as it provides MVC architecture with data model binding. On the other hand, Bootstrap uses HTML, CSS, and JavaScript for its development which ... Read More

Difference between Arrays and Collection in Java

Nitin Sharma

Nitin Sharma

Updated on 17-Sep-2019 10:34:05

11K+ Views

In order to store multiple values or objects of the same type, Java provides two types of data structures namely Array and Collection.The following are the important differences between Arrays and Collection.Sr. No.KeyArraysCollection1SizeArrays are fixed in size i.e once the array with the specific size is declared then we can't ... Read More

Difference between Applets and Servlets in Java.

Nitin Sharma

Nitin Sharma

Updated on 16-Sep-2019 11:39:37

4K+ Views

In java, both Applets and servlets are the programs or applications that run in a java environment. The main difference in both the programs is in their processing is done in different environments.The following are the important differences between Applets and Servlets.Sr. No.KeyAppletsServlets1ExecutionApplets are executed on client-side i.e applet runs ... Read More

Difference between an Iterator and ListIterator in Java

Nitin Sharma

Nitin Sharma

Updated on 16-Sep-2019 11:31:47

563 Views

Java provided these two interfaces to traverse the data one by one stored in a collection. The internal implementation of iterator and list iterator makes them differ apart but the main agenda of both the iterators is the same.The following are the important differences between Iterator and ListIterator.Sr. No.KeyIteratorListIterator1ApplicableIterator can ... Read More

Difference between a Static Queue and a Singly Linked List in Java.

Nitin Sharma

Nitin Sharma

Updated on 16-Sep-2019 11:10:29

673 Views

In Java List and Queue both are introduced as an ordered list of objects, where the same object may be added more than once. The difference between both comes in the manner of adding elements. In the queue, all the elements get inserted at the rear and removed from the ... Read More

Advertisements