top of page
Search
The Tech Platform
Apr 12, 2021
Java Programming from a JVM Performance Perspective
Tip #1: Don’t Obsess Over Garbage I find that sometimes Java developers obsess over the amount of garbage their applications produce....
The Tech Platform
Mar 29, 2021
How to convert an HTML document file to text (TXT) in Java
When working with HTML files, if you have no need to maintain formatting or graphics, it may be easier to convert your file format to...
The Tech Platform
Mar 29, 2021
Convert MPG to MP4 in Java
With Apple placed as one of the leading providers of devices that enable media access and streaming, it is integral to optimize your...
The Tech Platform
Mar 25, 2021
How to find largest and smallest number from integer array
If you look at the code here, we have created a method called the largestAndSmallest(int[] numbers) to print the largest and smallest...
The Tech Platform
Mar 25, 2021
How to Implement Bubble Sort in Java
Sorting algorithms play an important role in computer science and programming, as they allow us to efficiently arrange data in a...
The Tech Platform
Mar 25, 2021
How to Find all Pairs in Array of Integers Whose sum is Equal to a Given Number
For example, if the input integer array is {2, 6, 3, 9, 11} and given sum is 9, the output should be {6,3}. The first solution which...
The Tech Platform
Mar 20, 2021
Write a program to print the below spiral pattern on the console
Algorithm: STEP 1: START STEP 2: SET i=1,j=1,k=1,l=1,direction=1 STEP 3: SET matrix[10][10] STEP 4: REPEAT STEP 5 to 9 UNTIL i is less...
The Tech Platform
Mar 19, 2021
Program: Find the sum of N Numbers using recursion
Enter the number of elements you want and then enter all the required elements as an input. Now we pass all the elements along with the...
The Tech Platform
Mar 16, 2021
Simple things to improve performance of Java database applications
DBC Performance tips are a collection of some tried and tested ways of coding and applying process which improves the performance of JDBC...
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...
bottom of page