Print Array in Reverse Order

In this tutorial we will learn to write a Java program to create an array and return the elements in reverse order. Our program will first input the size of the array and then the…

Reverse Array without using Second Array or inplace Reversal

In this tutorial, we will learn to write a Java program to invert an array without using another array. This is also known as inplace array reversal program in Java. In the previous tutorial we…

Print Length of an Array

In this tutorial, we will learn to write a Java program to create an array and print the length of the array. Our program will return the size of the given array. For example Case…

Insert Element At the End of Array

In this tutorial, we will learn to write a Java program to insert an element at the end of an array and print the array. Our program will insert an element at the end of…

Find the Sum of Array Elements

In this tutorial we will learn to write a Java program to create an array and calculate the sum of the elements stored in the array. Our program will first take the input of the…

Java 14 – Pattern matching in instanceof

Java 14 introduces instanceof operator to have type test pattern as is a preview feature. Type test pattern has a predicate to specify a type with a single binding variable. Syntax Example Consider the following…

Java 14 – Text Blocks

Java 13 introduces text blocks to handle multiline strings like JSON/XML/HTML etc as is a preview feature. With Java 14, we’ve second preview of Text Blocks. Now Text Block have following enhancements − \ − indicates…