A Brilliant Program: Insert an element into an array
Write a program to insert an element into an array. Ask the user to enter the number to enter and the position(index) where you want to insert the...
An Awesome program: Common elements in two arrays
Write a program to accept two integer arrays from the user and print all the common elements in two arrays.
String programs
Learn the use of operators in JAVA
In this program, arithmetic operators are used.
for more java programs https://java4school.com/program-to-use-variable-datatype
Write a program to explain the use of operators...
A beautiful Pythagorean Triple Program
A Pythagorean Triple is a set of positive integers, a, b and c that fits the rule: a^2 + b^2 = c^2 So if the...
A delightful Automorphic number
A number is called an Automorphic number if its square ends in the same digits as the number itself. For example, N=6 is an automorphic number because 6*6=36N=25...
A dazzling Armstrong Number Program
It is a number that is equal to the sum of cubes of its digits. For example 153 1^3+5^3+3^3=1+125+27=153.
For some basic concepts of java visit...
An Efficient Kaprekar Number
It is a number whose square, when divided into two parts, the sum of parts is equal to the original number For Example 45-->(45)^2= 2025-->Now when we divide...
ICSE COMPUTER sample paper 3 (class IX)
Section A (40 marks)
Answer the following questions. ...
An easy Pronic Number Program
It is a number which is the product of two consecutive integers, that is, a number of the form n(n + 1).For Example: 12 is a pronic number...