Java

Java is a simple, secured, high level, platform-independent, multithread, Object-oriented programming language.

 

It’s one of the most popular and widely used programming language, platform, and technology. Java is not only a language it is also a platform and technology.

 

Related Pages:-

Static Import in Java

Static import in Java was introduced in the Java SE 5.0 version, which is used to directly access the static members of a class without using its class name. Upto Java 1.4, we must access static members of one class from another class only by using class-name. Without using static import Accessing static members x

Static Import in Java Read More »

Pyramid Program in Java

Pyramid Program in Java | There are many pattern programs are written by programmers for practice purposes. The pyramid star pattern in Java is one of them. In this post, we will display half pyramid star pattern, inverted half pyramid star pattern, full pyramid star pattern, full pyramid star pattern at the center of the

Pyramid Program in Java Read More »

Pascal Triangle in Java

Pascal Triangle in Java | Pascal triangle is a triangular array of binomial coefficients. In pascal’s triangle, each number is the sum of the two numbers directly above it. Pascal Triangle Program in Java Without Using an Array After observation, we can conclude that the pascal always starts with 1 and next digits in the

Pascal Triangle in Java Read More »

Diamond Pattern Program in Java

Diamond Pattern Program in Java | There are different diamond pattern programs in Java, Here we will write Half diamond pattern, Full diamond pattern, Hollow diamond pattern program, Different diamond pattern programs with numbers. Now, let us start with a Full diamond pattern program with stars. 1. Display the given below full diamond pattern of

Diamond Pattern Program in Java Read More »

Unique Digits Count in Java

Unique Digits Count in Java | Write a Java program to count the unique digits in the given number. For example, if the given number is 01230312 then the total number of unique digits is 4. To develop this Java program, we have to take the help of an array or collection. First, we develop

Unique Digits Count in Java Read More »