Java - Medium Articles
Validating phone numbers is a common prerequisite in today’s web, mobile, or desktop applications, but Java does not have an integrated method for carrying out… Read More
Universally Unique Identifiers (UUIDs) are also known as Globally Unique Identifier(GUID) which are 128-bit numbers and are unique on all local systems they are created… Read More
Given an undirected graph, the task is to check if the given graph is connected or not using DFS. A connected graph is a graph… Read More
Given an array points[] representing N points in a K-dimensional space, the task is to find the count of pairs of points in the space… Read More
VList is a data structure that combines fast indexing of arrays with the easy extension of singly-linked lists. VList generally supports the following functions. Insert… Read More
Byte Array – A Java Byte Array is an array used to store byte data types only. The default value of each element of the… Read More
As we all know Java is widely used in tech industries, with around 4 billion devices currently using java. This Java installation is going to… Read More
Now a day many social media apps provide so many filters that we can use to make our image inside the app more beautiful and… Read More
The statement interface is used to create SQL basic statements in Java it provides methods to execute queries with the database. There are different types… Read More
Typecasting is the assessment of the value of one primitive data type to another type. In java, there are two types of casting namely upcasting… Read More
Cryptography using the Transposition Technique can be done by using Transposition ciphers which uses the letters of the plaintext message and after that, they permute… Read More
We are given two sorted List and our goal is to merge these two lists into a new list. For that, we have to write… Read More
Monoalphabetic Cipher is a cipher where the letters of the plain text are mapped to ciphertext letters based on a single alphabetic key. It is… Read More
  RSA or Rivest–Shamir–Adleman is an algorithm employed by modern computers to encrypt and decrypt messages. It is an asymmetric cryptographic algorithm. Asymmetric means that… Read More
Given a Circular Linked List, the task is to add a New Node at the Middle of the List. Let’s consider the following Circular Linked… Read More
HorizontalRecyclerView is seen in many apps. It is generally used to display the categories in most apps and websites. This type of RecyclerView is seen… Read More
#include in C/C++: In the case of C language, #include is a standard or user-defined file in a program that tells the preprocessor to insert… Read More
In this article, we will be building a Tic Tac Toe Game Project using Java and XML in Android. The Tic Tac Toe Game is… Read More
Zxing stands for Zebra Crossing, it is one of the most popular open-source API for integrating QR(Quick Response) Code processing. It is a barcode image… Read More
ArrayList is a resizable array implementation in Java. ArrayList grows dynamically and ensures that there is always a space to add elements. The backing data… Read More