bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Tutorial
Java•Java Tutorial

Java Logical Operators

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java Logical Operators?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ isLoggedIn = true;
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Logical operators are used to determine the logic between variables or values, by combining multiple conditions::
As with comparison operators , you can also test for true or false values with logical operators.
Real-Life Example: Login Check

Logical Operators

As with comparison operators , you can also test for true or false values with logical operators.

Logical operators are used to determine the logic between variables or values, by combining multiple conditions::

OperatorNameDescriptionExample
&&Logical andReturns true if both statements are truex < 5 && x < 10
Logical orReturns true if one of the statements is truex < 5x < 4
!Logical notReverse the result, returns false if the result is true!(x < 5 && x < 10)

Real-Life Example: Login Check

The example below shows how logical operators can be used in a real situation, e.g. when checking login status and access rights:

Example

boolean isLoggedIn = true;
boolean isAdmin = false;
System.out.println("Regular user: " + (isLoggedIn && !isAdmin));
System.out.println("Has access: " + (isLoggedIn || isAdmin));
System.out.println("Not logged in: " + (!isLoggedIn));

Logical operators often become easier to understand once you start using them inside if statements, which you will learn about in the upcoming chapters.

Previous

Java Comparison Operators

Next

Java Operator Precedence