java

java

7 different Java programs to check if a number is Even or odd

Java program to check if a number is even or odd number. This post will show you 7 different ways to check if a user-given number is even or odd.

Read
java

Java Arrays sort method explanation with example

Java Arrays sort method is used to sort the contents of an array in a given order in a given range. This post will show you how to use Arrays.sort method with examples.

Read
java

Java Arrays hashCode() method explanation with examples

Learn how to use Java Arrays hashCode method with different examples. hashCode method is used to get the hash code of an array in Java. It returns the hash code based on the array contents.

Read
java

Java Program to check if a number is a magic number or not

Java Program to check if a number is magic number or not. This program will take one user input number and print one message that it is a magic number or not.

Read
java

Java Arrays toString method explanation with example

Java Arrays toString method explanation with examples. Arrays toString method can be used to convert an array to a string. Learn how to use toString method with different examples.

Read
java

java.util.Arrays.fill method explanation with examples

Java Arrays fill method explanation with examples. Arrays fill method can be used to fill an array with some specific value. This post will show you how to use fill with different examples.

Read
java

Java Arrays deepEquals method explanation with example

Java util Arrays deepEquals method explanation with examples. Learn how to use deepEquals method to compare two arrays and the difference between deepEquals and equals.

Read
java

Java Arrays binarySearch method explanation with example

Java util Arrays binarySearch method explanation with examples. By using this method, we can search for an element in an array by using binary search algorithm.

Read
java

4 different Java program to check if a number is a sunny number or not

Java sunny number program. This program will check if a user given number is a sunny number or not and how to print sunny numbers in a range.

Read
java

Java program to check if a number is a spy number or not

Java spy number program. This java program will take one number as input from the user and it will check if that number is a spy number or not.

Read