Press "Enter" to skip to content

Posts published in “Programming”

Programming Languages we learn and develop with us. The tips & tricks, working well documented interesting programs.

Synchronization in Java

Synchronization allows for only one thread to access a piece of code or an object at any given moment. This prevents simultaneous requests to access…

Multithreading in Java

Multithreading is a way for us to execute the same process across multiple threads. A thread can be understood as a small unit which executes…

Linked Lists

Linked lists are linear data structures, which consist of nodes. These nodes store data in them as well as point to the next node in…