ArrayDeque in Java The ArrayDeque in Java provides a way to apply resizable-array in addition to the implementation of the Deque interface. It is also… Read More
Category Archives: Java
In android, Menu is an important part of the UI component which is used to provide some common functionality around the application. With the help… Read More
In Android, a ScrollView is a view group that is used to make vertically scrollable views. A scroll view contains a single direct child only.… Read More
Kafka Producers are going to write data to topics and topics are made of partitions. Now the producers in Kafka will automatically know to which… Read More
public boolean isUserAGoat() can be used to determine whether the user making this call is goat or not. This method always returns a false value… Read More
Prerequisites: Socket Programming in Java File Handling in Java This article describes a one-way client and Server Setup where a client connects, and sends the… Read More
A lot of funful REST API calls are available as open source. Suppose if we like to keep a name to our nears and dears,… Read More
Spring MVC Framework follows the Model-View-Controller design pattern. It is used to develop web applications. It works around DispatcherServlet. DispatcherServlet handles all the HTTP requests… Read More
Compiler and Interpreter are two different ways to translate a program from programming or scripting language to machine language. In this article let’s discuss on… Read More
REST APIs provide us a functionality with the help of which we can add data to our database using REST API. For posting this data… Read More
A Java KeyStore is a file that contains certificates. These certificates are used in the Java code. KeyStore and the certificates within it are used… Read More
RadioGroup is a widget in android which is used to handle multiple radio buttons within the android application. We can add multiple radio buttons to… Read More
In real-world scenarios, organizations are existing in different localities. Employees are available in many locations. Sometimes they work in different 2 locations i.e. for a… Read More
REpresentational State Transfer (REST) is an architectural style that defines a set of constraints to be used for creating web services. REST API is a… Read More
Many times, the UI of an application gets blocked while downloading images from the internet. This problem can be solved by implementing lazy loading of… Read More