Author: Rabecca Fatima
-
JavaIdentifiers
Identifiers are fundamental building blocks of a program and are used as the general terminology for the names given to…
April 21, 2022
-
JavaLiterals in Java
Literals(often referred to as constants) are data items that are fixed data values. Java allows several kinds of literal: integer-literal…
April 21, 2022
-
JavaEscape Sequence
Java allows us to have certain non-graphic characters in character constants. (non-graphic characters are those which cannot be typed directly…
April 21, 2022
-
JavaData Types in Java
Data types are means to identify the type of data and associated operations of handling it. Java, like any other…
April 21, 2022
-
JavaVariables in Java
Variables represent named storage locations, whose values can be manipulated during the program run. For instance, to store the name…
April 21, 2022
-
JavaConstants in Java
In programming, a constant is an immutable entity. To put it another way, the value cannot be altered. In a…
April 26, 2022
-
JavaOperators in JAVA
The operators in Java represent the operations, i.e, operators perform operations on the operands. Let us discuss the various operators…
April 28, 2022
-
JavaOperator Precedence & Associativity
Operator precedence determines the order in which the operators in an expression are evaluated. Associativity rules determine the grouping of…
April 30, 2022
-
JavaType casting in Java
In Java, type casting is a method or process for manually and automatically converting one data type into another. The…
April 30, 2022
-
JavaSelection Statement
The selection statement allows choosing the set of instructions for execution depending upon an expression’s truth value. Java provides two…
April 30, 2022
-
Javaif-else ladder & nested if block
if-else ladder: The if-else-if ladder statement is used to test multiple conditions in Java. It’s used to test a single…
April 30, 2022
-
Javaswitch Statement
Java provides a multiple-branch selection statement known as a switch. This selection statement successively tests the value of an expression…
May 1, 2022