Java Basic
What is a Package in Java? | Why We Need Packages Explained
Java main() Method Explained | public static void main(String[] args) Breakdown
Java Class Structure Explained | Package, Imports, Variables, Methods, Constructors & More
JDK vs JRE vs JVM in 60 Seconds
Stack in Java
A stack is a data structure with LIFO (Last In, First Out), meaning the element that joins last is retrieved first. In Java, Stack is a generic class that implements this stack data structure. In this tutorial, we’ll learn more about Stacks in Java! The… Read More
Java Stack Tutorial | Push(), Pop(), and Peek() Explained with Examples
Video: Mastering the Switch statement in Java – Part 1
Deque in Java
Interface Deque (short for Double-Ended Queue) in Java is an interface that defines a data structure that allows us to add or remove elements at the front or rear: This Deque interface extends from the Queue interface and it has 2 main implementations: ArrayQueue and… Read More
Switch statement in Java – Part 2
In the previous tutorial, I introduced you to the basic knowledge of the switch statement in Java. In this tutorial, I will talk more about the new features that Java supports from version 14 onwards! Switch from Java 14 When working with a switch statement,… Read More