Category Java

Scientech Easy welcomes you in the Java tutorial category. We have designed this tutorial series for beginners, students, and professional developers who want to learn Java programming from basic to advanced levels. Here, you will find easy-to-understand Java tutorials, practical example programs, interview questions, and quizzes.

So, let’s start to understand Java concepts one by one with these tutorials.

Assignment Operator in Java with Examples

An operator that is used to store a value into a particular variable is called an assignment operator in Java. In any programming language, the assignment operator is one of the most commonly used operators because it assigns values to…

Bitwise Operator in Java

Types of bitwise operators in Java: AND, OR, XOR, NOT, Left shift. Right shift, and Unsigned right shift.

A bitwise operator in Java is an operator that performs operations on the individual bits (0 or 1) of integer operands. Bitwise operators work only with integral data types, such as byte, short, int, long, and char. They cannot be…

Unary Operator in Java: Types, Examples

Learn unary operator in Java and its various types with examples.

An operator that performs an operation on only a single operand is called a unary operator in Java. The term “unary” literally means “one.” Therefore, a unary operator works with a single variable or value. In other words, unary operators…

Operators in Java: Types, Examples

Types of operators in Java

In this tutorial, we will learn operators in Java and their types with examples. Generally, we write a program to perform some basic operations. For example, we can perform the addition of two numbers just by using + symbol in…

Relational Operators in Java with Example

Relational operators in Java are those binary operators that are used to perform the comparison between two values or expressions. For example, we can use relational operators to determine which number is larger, compare the ages of two people, compare…