Posts from Java

How to move all the capital letters to end of a string in Java

By Shakshi Parekh

In this context, we will learn how to move all the capital letters to the end of a string in Java. So if the user enters Let us Learn Java Output will be et us earn avaLLJ. Java pr.... Read More

Capitalize the first letter of every array elements in Java

By Zeyan Ansari

Hello, coders today we are going to learn how to capitalize the first letter of every array elements in Java. EXPLANATION: First, we will create an array having elements with their.... Read More

Calculating the Area of Triangle in all 4 ways in Java

By Kollabathula Preetham

Hey coders! In this tutorial, we will learn the different ways of calculating the area of a Triangle and implement it in code in Java. So a Triangle has three sides and three angle.... Read More

Creating a User Defined Kafka Producer Application in Java

By Anand Shukla

Apache Kafka is a distributed, replicated commit log service commonly used for publish/subscribe type messaging, website activity handling, metric & log aggregation and stream .... Read More

Bubble Sort in JAVA

By snormy

IN this tutorial we will learn how to implement bubble sort in Java with the explanation. ‘Sorting’ in programming refers to the proper arrangement of the elements of an array.... Read More

Insertion Sort in JAVA

By snormy

This tutorial will focus on Insertion Sort in Java and the implementation of insertion sort. ‘Sorting’ in programming refers to the proper arrangement of the elements of an ar.... Read More

Maximum sum of an Hourglass in a Matrix in Java

By Kollabathula Preetham

In this tutorial, we will learn how to calculate the maximum sum of an hourglass in a 2 – Dimensional matrix in Java. An hourglass is a subset of 7 values with indices which .... Read More

Add Suffix to array elements in Java

By Zeyan Ansari

Hello Coder’s in this Tutorial we will learn how to add Suffix to each element of an Array in Java. Explanation: While accessing the array, update the element by adding the Suffi.... Read More

Related Posts