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.

When Finally Block Is Not Executed in Java

When finally block is not executed in java

In this tutorial, we will familiar with some specific conditions in which finally block will not get executed in Java. So far, we have learned that a finally block always gets executed, whether we have handled exception in catch block…

Logical Operators in Java

Logical operators in Java are those operators that are used to form compound conditions by combining two or more conditions or relational expressions. In simple words, logical operators combine two or more conditions and evaluate the overall result. For example:…

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…