Java
-
Linear Search
The list of array is traversed sequentially and every element is checked. In this type of searching, we simply traverse the list completely and match each element of the list…
-
Java memory management
Generally java memory is divided into two big parts : Heap Stack Heap is huge amount of memory compare to stack. 1024 MB is default value of heap size in…
-
Thread Pools
Java thread pools represents a group of worker thread that are waiting for job and reuse many times. A thread pool reuses previously created threads to execute current tasks and…
-
Volatile keyword in java
Usage of volatile in java






