Java
Java is both a programming language and a platform. Java's WRITE ONCE and RUN ANYWHERE is just too strong. Java is sleeker, faster, and much more powerful today.
Kinds Of Method References
In this lesson, you will be introduced to different kinds of method references and their syntaxes.
What Are Method References?
In this lesson, you will learn about the method reference operator, its usage, and an example code with a detailed explanation.
A deep dive into Java Streams API with examples
Let us deep-dive into Streams API and know how they function. Stream Phases A Java Stream is composed of 3 main phases. 1. Source 2. Intermediate operations 3. Terminal operations Source: Data is collected from a collection. We usually call it Stream source, for example: * List * Map * Set * Array, etc.

How Does Streams API Work?
In this lesson, you will learn everything you need to understand what are streams. and how they actually process data.
What is Consumer Interface in Java?
This lesson talks about the first functional interface, which is the Consumer.
A Detailed Guide On Java Built-In Functional Interfaces
This lesson details about the various functional interfaces that fall under major 4 categories.
What Are Functional Interfaces in Java? With Examples
This is the introductory lesson on functional interfaces. Introduced in Java SE 8, these are powerful and most useful as either lambdas or method reference can use it.
What is Declarative Programming? With Examples
In this lesson, you will learn declarative programming and the steps to achieve it. You will also be introduced to some real-world use cases for easy understanding.
What is Immutability in Java Functional Programming?
In this lesson, you will learn how immutability is achieved through functional programming.