Java - Medium Articles
This is the Part 8 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 12 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 14 of “Build a Social Media App on Android Studio” tutorial, and we are going to cover the following functionalities in… Read More
ProgressBar is used when we are fetching some data from another source and it takes time, so for the user’s satisfaction, we generally display the… Read More
Contacts app in android device is a system app that comes installed on your android device. Different devices have different UI for the contacts app.… Read More
In Java, java.lang.ClassNotFoundException is a checked exception and occurs when the Java Virtual Machine (JVM) tries to load a particular class and the specified class… Read More
If you are selling any product or providing any service in your android application, then you should have integrated a feature in your android application… Read More
Before java 8 the compiler used to take it from the java.util package. But later since the use of date and time became important in… Read More
In this article, we are going to see how to build a much interesting app named Alarm Setter. Alarm plays a vital role in our… Read More
In certain cases, while uploading files we may require to upload files from our google drive or it may happen that we want to give… Read More
While doing problems in various coding platforms in some questions we end up with (TLE). At that point of time even if we use fast… Read More
Inheritance, as we have all heard is one of the most important features of Object-Oriented Programming Languages whether it is Java, C++, or any other… Read More
A positive integer with digits p, q, r, s…, is known as an Armstrong number of order n if the following condition is fulfilled. pqrs...… Read More
The Determinant of a Matrix is a real number that can be defined for square matrices only i.e, the number of rows and columns of… Read More
Given an array arr[] of n elements, write a function to recursively search a given element x in arr[]. Illustration: Input : arr[] = {25,… Read More
The upper star triangle pattern means the base has to be at the bottom and there will only be one star to be printed in… Read More
Here we are getting a step ahead in printing patterns as in generic we usually play with columnar printing in the specific row keep around… Read More
Pascal’s triangle is a triangular array of the binomial coefficients. Write a function that takes an integer value n as input and prints the first… Read More
In Java, both this and this() are completely different from each other. this keyword is used to refer to the current object, i.e. through which… Read More
In many apps, we got a feature to login using our email and password. Sometimes it happens that we forget the password and most of… Read More