Java - Medium Articles
Firebase is a mobile and web application development platform. It provides services that a web application or mobile application might require. Firebase provides secure file… Read More
We have seen reading data from API in our Android app in Android Studio. For reading data from API, we use GET request to read… Read More
We have seen many apps and websites in which we will get to see a chatbot where we can chat along with the chatbot and… Read More
A thread is basically a stream of instruction executed sequentially. It is used to implement multitasking in a program. A program can have multiple threads.… Read More
ConcurrentHashMap class obeys the same functional specification as HashTable and includes all the versions of methods corresponding to each method of a HashTable. A HashTable… Read More
In the previous article, we have seen using Language detector in Android using Firebase ML kit. In this article, we will take a look at… Read More
Now a day, we have seen that most of our Android phone contains fingerprint authentication. And we can implement that fingerprint authentication in our app… Read More
An Unrolled Linked List is a special type of Linked List in which each node stores an array of elements, unlike a simple linked list.… Read More
A JVM or Java Virtual Machine is a software implementation of a physical machine, or we can say it is an abstract machine. Java was… Read More
Classpath is a parameter in JVM or the java compiler that specifies the location of the user–defined classes as well as the packages. While programming… Read More
In this article, we are going to see how to iterate through a List. In Java, a List is an interface of the Collection framework.… Read More
JAR is an abbreviation of JAVA Archive. It is used for aggregating multiple files into a single one, and it is present in a ZIP… Read More
Given two integers N and K. Create an array of N positive integers such that the sum of all elements of the array is divisible… Read More
Interface contains only abstract methods that can’t be instantiated and it is declared by keyword interface. A class that is declared with the abstract keyword… Read More
In a file system, without reading the previous text we cannot directly access the specific index. Thus, Reading text from a file from the specific… Read More
An unexcepted, unwanted event that disturbed the normal flow of a program is called Exception. Most of the time exceptions are caused by our program… Read More
Deep Linking is one of the most important features that is used by various apps to gather data inside their apps in the form of… Read More
Double hashing is a technique in an open addressing scheme. and there is the ordinary hash function. In an open addressing scheme, the actual hash… Read More
An alphanumeric value i.e. the sequence of letters and numbers that uniquely defines the contents of a file is called a checksum (often referred to… Read More