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

Addition Program in Java

Addition Program in Java | An Addition program in Java is the basic program, which is used to introduce to beginners. The Addition program in Java simply adds two numbers and displays them to the output screen. Addition of Two Numbers in Java without using Scanner It is a simple Java addition program that adds […]

Addition Program in Java Read More »

Arithmetic Operators in Java

Arithmetic operators in Java are used to perform mathematical operations. The arithmetic operators in Java can operate on any built-in data type. Syntax:- operand1 operator operand2 Operator Meaning + Addition – Subtraction * Multiplication / Division % Modulus The unary minus operator has the effect of multiplying its operand by -1. Example:- 8*(-1) = (-8)

Arithmetic Operators in Java Read More »

Java code conventions

The Java code conventions make programs more understandable by making them easier to read. Whenever we are writing code then it is recommended to follow some coding standards and conventions so the readability and maintainability of the code will be improved. The name of the components should reflect the purpose or functionality of those components.

Java code conventions Read More »

Identifiers in Java

The name of the basic programming element is called Identifier. Identifiers in Java are used for identifying or finding a programming element from other parts of the program or project. Keywords are a pre-defined name which has special meaning outside comments and string. If we define any basic programming element without a name then the

Identifiers in Java Read More »

Escape Sequence In Java

In Java, the escape sequence is a character preceded by a backslash (\) and it has special meaning to the compiler, JVM, Console, and Editor software. Every escape character must start with \ following by a single character The escape sequence changes the original meaning of a character. When we place \ before a character

Escape Sequence In Java Read More »

String Data Type in Java

The string is a referenced data type in Java and it is also a predefined class created by SUN. It is available in java.lang package in java.base module. The string data type in Java is used for representing a sequence of characters placed in double quotation marks (“”). It means for storing a sequence of

String Data Type in Java Read More »

Unicode Character Set in Java

The Unicode stands for universal characters code, which contains all countries speaking languages character codes. Unicode character set has 65536 characters from 0 to 65536, so to store it 2 bytes of memory should be allocated. Unicode character set is used for developing internationalization (I18N) applications. The process of designing web applications in such a

Unicode Character Set in Java Read More »