Java - Medium Articles
Strings – Strings in Java are objects that are supported internally by a char array. Since arrays are immutable, and strings are also a type… Read More
Thread can be referred to as a lightweight process. Thread uses fewer resources to create and exist in the process; thread shares process resources. The… Read More
Social media is not a new term for us. Our daily life is incomplete, or we can say we human beings survive on food, water,… Read More
ConcurrentModificationException is a predefined Exception in Java, which occurs while we are using Java Collections,  i.e whenever we try to modify an object concurrently without… Read More
In order to fully understand the concept of  Component in Dagger, we have to first go through a brief about Dagger itself. Now according to… Read More
Accessibility service is like a magic wand provided by the Android Framework. Although the sole purpose of the Accessibility service is to provide differently-abled an… Read More
Pre-requisites:  Android App Development Fundamentals for Beginners Guide to Install and Set up Android Studio Android | How to Create/Start a New Project in Android… Read More
The ambiguities are those issues that are not defined clearly in the Java language specification. The different results produced by different compilers on several example… Read More
Given string str of length N, the task is to traverse the string and print all the characters of the given string. Illustration: Input :… Read More
Given a string S consisting of uppercase and lowercase characters. The task is to sort uppercase and lowercase letters separately such that if the “i”th… Read More
Given a string S of size N, consisting of digits [0 – 9] and character ‘.’, the task is to print the string that can… Read More
Canvas API is also one of the most used in Android. The name of the API itself tells us that the API is being used… Read More
Stories are now becoming one of the most seen features in many different apps such as WhatsApp, LinkedIn, Instagram, and many more. In this article,… Read More
ViewPager allows the users to swipe left or right through the pages containing data or see an entirely new screen. You can find this feature… Read More
Given a string and a word that task to remove the word from the string if it exists otherwise return -1 as an output. For… Read More
A stream is a sequence of objects that supports various methods that can be pipelined to produce the desired result. Stream is used to compute… Read More
Blurring is a simple and frequently used image processing operation. It is also called as Smoothing. Smoothing of an image removes noisy pixels from the… Read More
Java has introduced a new approach in the technology sector as a programming language. Java takes the top spot of technologies used for coding. A… Read More
This is the Part 1 of “Build a Social Media App on Android Studio” tutorial, and we are going to cover the following functionalities in… Read More
This is the Part 6 of “Build a Social Media App in Android Studio” tutorial, and we are going to cover the following functionalities in… Read More