You are here:Home-Articles

Introduction to the Java Platform: A Beginner’s Guide

Are you new to the world of Java programming? Are you eager to learn about the Java platform and how it works? Look no further! In this article, we will provide an overview of the Java platform, its components, and its unique features. Whether you’re a beginner or an intermediate Java developer, this guide will

By |2023-07-26T12:40:07+00:00July 14th, 2023|Categories: Articles, Tutorials|Tags: , , , , |Comments Off on Introduction to the Java Platform: A Beginner’s Guide

Unlocking the Magic of Object-Oriented Programming: A Journey from Simplicity to Sophistication

Get ready to dive deep into the world of object-oriented development and design as we explore how beginners can get started with objects. So, buckle up as we explore the exciting realm of object-oriented programming and design. Now, imagine this: you’re a Java developer with over 20 years of experience under your belt. You might

By |2023-07-26T12:36:47+00:00July 13th, 2023|Categories: Articles, Tutorials|Tags: , , , , , , , |Comments Off on Unlocking the Magic of Object-Oriented Programming: A Journey from Simplicity to Sophistication

Exploring Different Roles in Java Development: Let’s Break it Down!

In this article, we’re diving into the exciting world of becoming a full-fledged Java developer. So, buckle up and let’s explore the different roles and skills you need to know! Core Java Developer — Banking on Java Awesomeness Okay, imagine this: you’re a Core Java developer, the cool kid working with pure Java. These folks

By |2023-07-26T12:26:42+00:00July 12th, 2023|Categories: Articles, Tutorials|Tags: , , , , |Comments Off on Exploring Different Roles in Java Development: Let’s Break it Down!

Conquering Unit Testing Challenges: Battling Badly Behaved Code

Unit testing can sometimes feel like a daunting task, especially when we encounter poorly designed code or lack experience in testing. But fret not! In this article, we’ll look into how we can structure our unit tests and how to think about unit testing to keep positive and stay on track. Hey there, fellow developers!

By |2023-07-26T12:21:35+00:00July 10th, 2023|Categories: Articles, Tutorials|Tags: , , , , , , |Comments Off on Conquering Unit Testing Challenges: Battling Badly Behaved Code

Introducing lambda expressions for functional programming in Java

Introducing lambda expressions for functional programming in Java In this article we'll take a look at lambda expressions - the powerhouse behind Java's functional programming! Format of Lambda Expressions The syntax of lambda expressions is very intuitive, easy to understand and apply. A lambda expression is made up of: input parameters arrow operator expression/statements block

By |2023-07-26T12:12:39+00:00July 13th, 2020|Categories: Articles, Tutorials|Tags: , , , |Comments Off on Introducing lambda expressions for functional programming in Java

Creating Mocks and Setting up Mockito Unit Tests

Creating Mocks and Setting up Mockito Unit Tests Overview You can create mocks either by using the API or by annotation You set up Mockito based unit tests by either using the Mcokito JUnit runner, including a JUnit 4 rule or by the API Creating Mocks Creating mocks programmatically You can create mocks programmatically by

By |2023-07-26T12:12:14+00:00July 13th, 2020|Categories: Articles, Tutorials|Tags: , , , , |Comments Off on Creating Mocks and Setting up Mockito Unit Tests