Java Development
-
Java streams api – Convert list to map
Hello. In this tutorial, we will understand how to convert a list to a map, using the java streams api…
Read More » -
Longest Substring Without Repeating Characters
Hello. In this tutorial, we will implement an important data structure question known as finding the longest substring without repeating…
Read More » -
Arrays.aslist in Java
Hello. In this tutorial, we will make understand and implement java.util.Arrays.asList(…) method. 1. Introduction Arrays.asList() method in java is used…
Read More » -
Memory Leak in Java
Hello. In this tutorial let us learn about memory management and memory leaks in a java programming language. 1. Introduction…
Read More » -
The DTO (Data Transfer Object)
1. Introduction to DTO Having a big application that has multiple layers you will need to “transport” that data between…
Read More » -
Bucket Sort Algorithm
1. Introduction In this article, we will look specifically at the Bucket Sort Algorithm, which is a type of Sorting…
Read More » -
Constraints in SQL
Hello. In this tutorial, we will learn different constraints in SQL and will use the postgresql database running on Docker.…
Read More » -
Where, Group by, Having, and Order by clause in SQL
Hello. In this tutorial, we will learn WHERE, GROUP BY, HAVING, and ORDER BY clauses in SQL and will use…
Read More » -
Bit Masking in Java
1. Introduction Bit masking is visualizing a number or other data in binary representation. Some bits are set and others are unset where set means true or 1 and unset means false or 0. It…
Read More »