1 / 8

Logical Operators

Logical Operators . Jumps Logical Operators The different logical operators found in Java Rational Operators The different rational operators found in Java. Jumps . A jump is also known as a branch A jump is when you program skips certain steps to move on to another block of code

elinor
Download Presentation

Logical Operators

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Logical Operators Jumps Logical Operators The different logical operators found in Java Rational Operators The different rational operators found in Java

  2. Jumps • A jump is also known as a branch • A jump is when you program skips certain steps to move on to another block of code • There are two types of jumps • Unconditional Jump = no condition is set • Conditional jump = a condition has to be satisfied in order for the jump to compare

  3. Logical Operators • Logical operators are functions used in Java • They are used to set certain conditions • These conditions are used when we have conditional jumps in our programs

  4. Different Logical Operators • There are many different operators, some of these include the following

  5. Rational Operators • Rational operators in java are used when we wish to make a comparison • Rational operators just like logical operators are used for conditional jumps in our java program s

  6. Different Logical Operators

  7. Is the answer to these conditions true of false? • 9 + 4 == 13 • 5*5 > 10 • 10 – 4 < 5 • 15 >= (10+5) • 21 / 7 <= 4 • 12*2 != 24

  8. Is the answer to these conditions true of false? • 9 + 4 == 13  False • 5*5 > 10  True • 10 – 4 < 5  True • 15 >= (10+9)  False • 21 / 7 <= 4  True • 12*2 != 24  False

More Related