top of page
Search
The Tech Platform
Nov 2, 2020
Selection Sort Program in Java
class SelectionSort { void swap(int A[], int i, int j) { int temp = A[i]; A[i] = A[j]; A[j] = temp; } int findMinIndex(int A[], int...
The Tech Platform
Nov 2, 2020
Insertion Sort Algorithm
Insertion sort is a simple sorting algorithm that builds the final sorted array one element at a time. It is an in-place and stable...
The Tech Platform
Nov 2, 2020
Insertion Sort Implementation in Java
public class InsertionSort { /*Function to sort array using insertion sort*/ void sort(int arr[]) { int n = arr.length; for (int i=1;...
The Tech Platform
Sep 21, 2020
Top 10 Libraries every Java Developer should know
A curated list of the essential Java libraries in Java and JVM software development Photo by Min An from Pexels Java is the number one...
The Tech Platform
Sep 19, 2020
Use Of Static Keyword In Java
Static Modifier In this article, we will discuss the static non-access modifier. Non-access modifiers change the default behavior of Java...
The Tech Platform
Sep 15, 2020
Set up Vim as your Rust IDE
The Vim text editor is a great development environment for programming Rust applications. The Rust programming language is designed to...
The Tech Platform
Sep 15, 2020
5 Open-Source Java IDE
Java IDE tools offer different ways to create a programming environment based on your requirements and preferences. There are several...
The Tech Platform
Sep 4, 2020
Writing Java with Quarkus in VS Code
In this tutorial, I'll walk you through how to rebuild, package, and deploy cloud-native applications automatically with Quarkus. In the...
The Tech Platform
Sep 4, 2020
How to install Java on Mac
Java is supported on Mac operating systems and can be installed and used on a Mac just like on any other operating system. However, the...
The Tech Platform
Aug 29, 2020
Combine GraphQL with Java to build a flexible and modern API
Avoid under-fetching and over-fetching data when retrieving data using REST APIs. In the past few years, developers have used RESTful web...
bottom of page