Skip to content

Blog

Members Public

Getting Started With Streams API

Why are we even using Java Streams API? Isn't Java collections doing the job before Java SE8? You will learn about the importance of functional programming using streams API.

Members Public

What are Java Streams?

This is the introductory lesson on Java streams. You will learn why Java introduces streams and how developers can take advantage of them.

Members Public

How To Construct An Array-Like Data Structure?

You will learn to implement a custom array-like data structure and basic array operations.

Implement An Array-Like Data Structure
Members Public

How To Fix Common Java Errors and Exceptions?

You will be introduced to the most common errors and exceptions in Java. With examples and steps to rectify them. Some tips and suggestions to developers are provided in detail.

Members Public

Single Responsibility Principle Examples(4 use cases)

We see some of the real-time software products following the SRP rule.

Members Public

Single Responsibility Principle And Its Importance

SRP states that each class should have a single, well-defined responsibility and that responsibility should be encapsulated within that class.

Members Public

Array Deletions and Shifting Algorithms

In this lesson, you will learn about an array of deletion and shifting algorithms with illustrations and code examples.

Members Public

The Benefits of Writing Your Own Code (Even If It's Not Perfect)

In the programming world, copying and pasting code from the internet can be tempting, but doing so can lead to a lack of understanding and hinder personal growth as a programmer.

The Benefits of Writing Your Own Code (Even If It's Not Perfect)
Members Public

Introduction to Java Enums

Definition of enums In Java, an enum (short for "enumeration") is a special data type that allows developers to define a set of named constants grouped under a single type. Each constant represents a unique value that can be assigned to a variable of that enum type. Enums

Introduction to Java Enums
Members Public

What is Imperative Programming? With Examples

In this lesson, you will learn imperative programming and the steps to achieve it. You will also be introduced to some real-world use cases for easy understanding.