Category Java

Scientech Easy welcomes you in the Java tutorial category. We have designed this tutorial series for beginners, students, and professional developers who want to learn Java programming from basic to advanced levels. Here, you will find easy-to-understand Java tutorials, practical example programs, interview questions, and quizzes.

So, let’s start to understand Java concepts one by one with these tutorials.

How to Iterate LinkedList in Java

Five ways to iterate LinkedList in Java

In Java, LinkedList is a popular data structure that is an implementation of the List interface, meaning that it supports all the operations defined in the List interface, such as add, remove, and get. We frequently use it to store…

Set in Java

Realtime example of set in Java

A set in Java is an unordered collection of unique elements or objects. In other words, a set is a collection of elements that are not stored in a particular order. Elements are simply added to the set without any…

LinkedList in Java

LinkedList in Java

➲ LinkedList in Java is a linear data structure that uses a doubly linked list internally to store a group of elements. A doubly linked list consists of a group of nodes that together represents a sequence in the list.…

Vector Programs in Java for Best Practice

In this tutorial, we have listed various types of Vector programs in Java for best practice based on Vector methods, Enumeration, Iterator, and ListIterator. Before going to practice, it is recommended that you first read vector tutorial to clear basic…

Vector in Java

Hierarchy of vector class in Java

Vector class in Java was introduced in JDK 1.0 version. It is present in Java.util package. It is a dynamically resizable array (growable array) which means it can grow or shrink as required. Java Vector class is similar to ArrayList…