Python Program to find if a number is Armstrong or not

A three-digit number is called an Armstrong number if the sum of cube of its digits is equal to the number itself.For example, 407 is an Armstrong number since` 4****3 + 0****3 + 7****3 = 64 + 0 + 343 = 407`.

Read

Write a Java program to find current resolution of the Screen

In this tutorial, we will learn how to find the Screen resolution of your system. We will use 'java.awt' package to calculate the values.

Read

Find the most frequent element in an array using Java

Java program to find the most frequent element in an Array. This post will show you how to get the number that occurs most of the time in an array.

Read

Java program to find pairs with a given sum in an array

One array is given with unsorted numbers. Find the total number of pairs of numbers, the sum of which is equal to a given value.

Read

Java 8 Tutorial : StringJoiner example

StringJoiner class was introduced in Java8 . Using this class, we can join a number of different strings easily. Two different constructs are available for StringJoiner to instantiate it.

Read

Java program to find all strong numbers in a range

Java program to find all strong numbers in a given range. This Java program will print all strong numbers from 1 to a given range.

Read

Java program to Find closest number to a given number without a given digit

Java program to find the closest number to a given number without a given digit. It will take the number and the digit as input from the user and print the closest number.

Read

Java program to find the number of vowels and digits in a String

Find the number of vowels and digits in a string in Java. This program will take one string as input from the user and print the number of vowels and digits in that string.

Read

Java program to iterate through a list using ListIterator

How to iterate through a list in Java from both direction using Listiterator. This post will show you how to do that with an example.

Read

Python program to sort all words of a string in alphabetical order

Python program to sort all words of a string in alphabetical order. This python program will take one string as input and sort all words of that string alphabetically.

Read