top of page
Search
The Tech Platform
Mar 17, 2021
How to Find Large Files and Directories with Size in Linux?
One of the common problems while working in Linux is to find large files to free some space. Suppose, your file system is full and you...
The Tech Platform
Mar 16, 2021
How to do INSERT and UPDATE using JDBC Batch statement?
JDBC API in Java allows program to batch insert and update data into database, which tends to provide better performance by simple virtue...
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 12, 2021
Hover Image Effects in CSS
We all love transitions, they personally make my heart skip a beat. I never get tired of watching them, especially as I’ve known the web...
The Tech Platform
Mar 11, 2021
Loop Statement in C++
Loops are an essential part of programming as they allow us to repeat a block of code until a specific condition is met. In C...
The Tech Platform
Mar 11, 2021
If Else Statement in C++
IF The if statement evaluates the test expression inside the parenthesis (). If the test expression is evaluated to true, statements...
The Tech Platform
Mar 10, 2021
How To Build Accessible HTML Tables
When building for the web, we want to ensure users of any ability are able to do whatever task they came to our site for. This could be...
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
Program to Convert String To Float In C#
In this article, we will write a C# program to convert String to Float using float.Parse() method class Program { static void...
bottom of page