top of page
Search
The Tech Platform
Mar 16, 2021
How to Connect to MySQL database in Java with Example
In this tutorial, You will learn how to connect to MySQL database from Java program and running SELECT and INSERT queries to retrieve and...
The Tech Platform
Mar 16, 2021
java.lang.ClassNotFoundException: org.Springframework.Web.Context.ContextLoaderListener
Problem : You are getting java.lang.ClassNotFoundException : org.Springframework.Web. Context.ContextLoaderListener in your Spring-based...
The Tech Platform
Mar 10, 2021
How to remove duplicate characters from String in Java?
There are three main ways to remove duplicates characters from String in Java; First to sort the character array of string and then...
The Tech Platform
Mar 10, 2021
How to Print all leaf Nodes of a Binary tree in Java
This is another interesting coding problem that is based on a binary tree and mostly asked beginner programmers. If you have some...
The Tech Platform
Mar 9, 2021
Binary tree InOrder traversal in Java using Recursion (With Example)
The InOrder traversal is one of the three popular ways to traverse a binary tree data structure, the other two being the preOrder and...
The Tech Platform
Mar 2, 2021
How to join two threads in Java? Thread.join() example
In this program, I have tried to explain how to use join() method by solving a popular multi-threading interview question, how to execute...
The Tech Platform
Mar 2, 2021
How to pause a Thread in Java - Thread.sleep and TimeUnit.sleep Example
There are multiple ways to pause or stop the execution of the currently running thread in Java, but putting the thread into a sleep state...
The Tech Platform
Mar 1, 2021
How to find Nth Fibonacci Number in Java - Coding Problem with Solution
It's been a long time since I have discussed a coding problem in this blog. So, I am going to start with probably the oldest one of them,...
The Tech Platform
Mar 1, 2021
How to implement Radix Sort in Java
The Radix sort, like counting sort and bucket sort, is an integer-based algorithm (I mean the values of the input array are assumed to be...
The Tech Platform
Feb 26, 2021
What is Deadlock in Java?
Deadlock is a common challenge in multithreaded programming that can occur when two or more threads are unable to proceed because each is...
bottom of page