Posts by Caushik Subramaniam
Author Biographical Info: A passionate front-end developer. I strive for perfection in everything.
The command-line environment that is often used to run programs is called a console. Though there are other methods for reading from and writing to the console, the Console class i.... Read More
Serialization refers to the process of translating a data structure or an object state into a format that can be stored in a database or transmitted over a network for reconstructi.... Read More
In this tutorial, we will learn to find how many times every element occurs in an array is required for solving many problems in competitive programming. If the array is not sorted.... Read More
Connecting a computer to the internet has become inevitable now. The connection can be made either with Ethernet technology or Wi-Fi technology. Though every Operating System offer.... Read More
The Variable-Length Arguments or varargs in Java was introduced in Java 1.5. Either the method was overloaded or the arguments were passed in an array to the method before the vara.... Read More
Actually, 0 and 1 can do a lot. In fact, the reason behind today’s technology is, of course, 0 and 1. Any field, say, for instance, Networking, relies upon binary. If one of .... Read More
A Design Pattern is a typical solution to the commonly occurring problems while designing software. Each design pattern is a solution proven to be efficient by software development.... Read More
An Exception is an unexpected event that might occur during the execution of a program. An unhandled exception can terminate a program abruptly. A try-catch block is meant to handl.... Read More