java

Packages in Java

In Java, a package is a container for a collection of classes, sub-packages, and interfaces. The package keyword is used to create…

2 years ago

Type casting in Java

In Java, type casting is a method or process for manually and automatically converting one data type into another. The…

2 years ago

Operator Precedence & Associativity

Operator precedence determines the order in which the operators in an expression are evaluated. Associativity rules determine the grouping of…

2 years ago

Operators in JAVA

The operators in Java represent the operations, i.e, operators perform operations on the operands. Let us discuss the various operators…

2 years ago

Constants in Java

In programming, a constant is an immutable entity. To put it another way, the value cannot be altered. In a…

2 years ago

Variables in Java

Variables represent named storage locations, whose values can be manipulated during the program run. For instance, to store the name…

2 years ago

Data Types in Java

Data types are means to identify the type of data and associated operations of handling it. Java, like any other…

2 years ago

Escape Sequence

Java allows us to have certain non-graphic characters in character constants. (non-graphic characters are those which cannot be typed directly…

2 years ago

Literals in Java

Literals(often referred to as constants) are data items that are fixed data values. Java allows several kinds of literal: integer-literalfloating-literalboolean-literalcharacter-literalstring-literalnull-literal…

2 years ago

Identifiers

Identifiers are fundamental building blocks of a program and are used as the general terminology for the names given to…

2 years ago