The Underlying data structure is double Linked List. Insertion order is reserved Duplicate objects are allowed Heterogeneous objects are allowed
Continue readingAuthor:
JAVA – Difference between ArrayList and Vector
ArrayList : No method is synchronized. Multiple threads can access ArrayList simultaneously. Hence Array List object is not thread safe.
Continue readingArrayList in Java
ArrayList:- The underlying data structure for array list is re-sizable array or growable array Insertion order is preserved Duplicate objects
Continue readingList Interface in Java with Examples
List (I) : List is the child Interface of collection. If we want to represent a group of individual objects
Continue readingPL/SQL Program for Armstrong Number
An Armstrong number is an integer such that the sum of the cubes of its digits is equal to the
Continue readingCollection And Collections Framework In Java
Collection:- A group of individual objects as a single entry is called Collection. Collection Framework: It defined several Classes &
Continue readingDifference between Arrays And Collections In Java
Arrays:- Arrays are fixed in size. Memory point of view arrays concept is not recommended to use. Performance point of
Continue readingCollections in Java
An array is an index & collection of fixed number of homogeneous data element. Limitation of object arrays: Arrays are
Continue readingAdding db_executor role In SQL Server
Recently, One of our colleagues asked me to give permission to execute Stored procedures on the Sales database but he
Continue readingJava Program for Binary To Decimal Conversion
We are taking binary number as input from user and write a Jav program to convert the given binary number
Continue reading