Blog
Exception Handling - Part 1
What is an Exception? Exception is an event that our program may encounter…
Read moreTDD - Part 1
Issue What if a program that you use frequently (for example, your email client…
Read moreIntroduction to Gradle
What is Gradle? Trying to describe Gradle in one sentence, I would say that…
Read moreJava Collections Framework
What is Java Collections Framework? Collections are like containers that group…
Read moreIterator Interface
Iterator Interface Each collection implements the Iterable interface, so we…
Read moreAbstract Class
What is an abstract class? An abstract class is a class that closely resembles…
Read moreLong story short...
Long story short Java has been with us since 1995 and is a programming language…
Read moreCollection Interface Part 2 - ArrayList
ArrayList How are list collections organized? In java.util we can find several…
Read moreCollection Interface Part 1
Collection in real-life examples Let's consider what it is like in the real…
Read moreIntroduction to Big-O
What is Big-O Notation? When working with collections (and more), you will often…
Read more