Print All Even Numbers in Array

In this tutorial, we will learn to write a Java program to create an array and print the even elements stored in the array. Our program will first enter the size of the array and…

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…

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…

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…

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 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…

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…