Presentation is loading. Please wait.

Presentation is loading. Please wait.

Logical and Relational Operation Session 5 Course: T-0974 Algorithm & Object-Oriented Programming I Year: 2010.

Similar presentations


Presentation on theme: "Logical and Relational Operation Session 5 Course: T-0974 Algorithm & Object-Oriented Programming I Year: 2010."— Presentation transcript:

1

2 Logical and Relational Operation Session 5 Course: T-0974 Algorithm & Object-Oriented Programming I Year: 2010

3 Bina Nusantara Learning Outcomes After taking this course, student should be expected to apply and demonstrate using Relational and comparator operator, Logical operator and bitwise operator.

4 Bina Nusantara Lecture outline Relational & Comparator procedure Relational & Comparator operator Logic & Boolean procedure Logic & Boolean operator Truth table Bitwise Operation

5 Bina Nusantara Relational procedure Relational procedure == Comparator procedure. Comparing two values. Using 6 relational/comparator operator. The result has Boolean type. The values have number, ASCII, or String data type.

6 Bina Nusantara Comparator operator OperatorDescriptionExampleResult <less than1 < 2true <=less than or equal to1 <= 2true >greater than1 > 2false >=greater than or equal to1 >= 2false ==equal to1 == 2false !=not equal to1 != 2true

7 Bina Nusantara Comparator operator Character can be compared by refering to its ASCII number. –Example: ‘a’ is more bigger than ‘A’ because ASCII number for ‘a’ (97) is bigger than ASCII number for ‘A’ (65). Word can be compared by String helper. Comparator operator is different than asssignment operator. X = 14  store 14 to X. X == 14  compare if X is equal to 14.

8 Bina Nusantara Comparator Operation

9 Bina Nusantara Logic/Boolean Procedure Logical procedure == Boolean procedure. Execute 1 or 2 logic values. It has 4 types Logic/Boolean operator. The result has Boolean data type. Truth table

10 Bina Nusantara Boolean Operator OperatorNameDescription !notlogical negation &&andlogical conjunction ||orlogical disjunction ^exclusive orlogical exclusion

11 Bina Nusantara NOT (!) p!pExample truefalse!(1>2) is true, because (1>2) is false falsetrue!(1>0) is false, because (1>0) is true Operator not (!) inverts the original value. true  false and false  true

12 Bina Nusantara AND (&&) p1p2p1 && p2Example false (2>3) && (5>5) is false Because both (2>3) and (5>5) are false falsetruefalse(2>3) && (6>5) is false Because (2>3) is false truefalse (6>5) && (2>3) is false Because (2>3) is false true (3>2) && (5>=5) is true Because both (3>2) and (5>=5) are true AND Operator (&&) is true when all of its operands are true. If one of its operand is false, then AND is false.

13 Bina Nusantara OR (||) p1p2p1 || p2Example false (2>3) || (5>5) is false Because both (2>3) and (5>5) are false falsetrue (2>3) || (6>5) is true Because (6>5) is true truefalsetrue(6>5) || (2>3) is true Because (6>5) is true true (3>2) || (5>=5) is true Because both (3>2) and (5>=5) are true OR (||) Operator is true if one of every its operand is true. If all of its operands become false then OR is false.

14 Bina Nusantara XOR (^) p1p2p1 ^ p2Example false (2>3) ^ (5>5) is false Because both (2>3) and (5>5) are false falsetrue (2>3) ^ (6>5) is true Because (2>3) is false and (6>5) is true truefalsetrue(6>5) ^ (2>3) is true Because (6>5) is true and (2>3) is false true false(3>2) ^ (5>=5) is true Because both (3>2) and (5>=5) are true Operator XOR (^) is true when both if its operands has different condition. When its operands has same condition then XOR is false.

15 Bina Nusantara Tabel Kebenaran: Demo

16 Bina Nusantara Thruth Table: Demo

17 Bina Nusantara Thruth table: Leap Year

18 Bina Nusantara Did You Know? When evaluating p1&&p2, Java evaluates p1 first. –If p1 is true then Java evaluates p2. –If p2 is false then Java doesn’t evaluate p2. When evaluating p1||p2, Java evaluates p1 first –If p1 is true then Java doesn’t evaluate p2. –If p1 is false then Java evaluates p2.

19 Bina Nusantara Advanced Learning Bit : the smallest unit in data. 1 byte = 8 bits. 1 bit has 0 or 1. Java support bitwise operator to do bit shift. Example : 0000 0000  00000 1000  8 0000 0001  10001 0000  16 0000 0010  20010 0000  32 0000 0011  30100 1101  77 0000 0100  41111 1111  255

20 Bina Nusantara Advanced Learning Bit’s values is same as boolean –1 : true –0 : false Its procedure is same as logical procedure. &  && (AND) |  || (OR) ^  ^ (XOR) ~  ! (NOT/NEGATE) Additional operator << : shift left (unsigned) >> : shift right (signed) >>> : shift right (unsigned)

21 Bina Nusantara Advanced Learning OperatorNamaExampleDeskripsi &AND1010 1110 & 1001 0010 Result: 1000 0010 If both of its bits is 1 then it produces 1. |OR1010 1110 | 1001 0010 Result: 1011 1110 If one of its bits is 1 then it produces 1. ^XOR1010 1110 ^ 1001 0010 Hasil: 0011 1110 If both of its bits have different values then it produces 1. ~NEGATE~1010 1110 Hasil: 0101 0001 If bit = 1  0 If bit = 0  1 <<LEFT SHIFT 1010 1110 << 2 Hasil: 1011 1000 Shift 2 bit to the left then fill the latter with zeros. >>RIGHT SHIFT (SIGNED) 1010 1110 >> 2 Hasil: 1110 1011 0010 1110 >> 2 Hasil: 0000 1011 Shift 2 bit to the right then fill the latter with zeros. Its Least Significant Bit is sign bit. >>>RIGHT SHIFT (UNSIGNED) 1010 1110 >>> 2 Hasil: 0010 1011 Shift 2 bit to the right then fill the latter with zeros.

22 Bina Nusantara Advanced Learning Shorthand for bitwise operation : &=, |=, ^=, >=, >>>= Bitwise only can be used for real number like : byte, short, int and long. Bitwise for Char type converts to int which refer to ASCII number.

23 Bina Nusantara Advanced Learning

24 Bina Nusantara Advanced Learning

25 Latihan Buatlah program menerima input Nama, Total belanja Jika belanja >100rb, maka disc 10% selain itu tidak ada discount. (gunakan kelas Scanner) Bina Nusantara University 25

26 import java.util.*; class Belanja { public static void main(String args[]) { String nama; boolean member=true; double belanja=0.0; Scanner in =new Scanner(System.in) System.out.println("Masukkan Nama"); nama=in.nextLine(); System.out.println("Masukkan Belanja"); belanja=in.nextInt(); Bina Nusantara University 26 if ((belanja >100000|| member==true) && belanja <500000) { belanja =belanja -(belanja*0.1); System.out.println ("Total belanja"+ belanja); } elseif (belanja >=500000) { belanja =belanja -(belanja*0.2); System.out.println ("Total belanja"+ belanja); } else { System.out.println ("Total belanja"+ belanja); }

27 Bina Nusantara References Introduction to Java Programming. 6ed. Liang. 2007. p94-98, p1279 Dasar Pemrograman Java 2. Abdul Kadir. 2004. p76-83 The Complete Reference Java. 5ed. Herbert Schildt. 2005. p62-76 Java 2 Weekend Crash Course. Julio Sanchez. 2002. p85-96 Bitwise: –http://java.sun.com/docs/books/tutorial/java/nutsandbolts/op3.htmlhttp://java.sun.com/docs/books/tutorial/java/nutsandbolts/op3.html –http://www.sap-img.com/java/java-bitwise-logical-operators.htmhttp://www.sap-img.com/java/java-bitwise-logical-operators.htm –http://www.leepoint.net/notes-java/data/expressions/bitops.htmlhttp://www.leepoint.net/notes-java/data/expressions/bitops.html –http://www.javabeginner.com/java-operators.htmhttp://www.javabeginner.com/java-operators.htm


Download ppt "Logical and Relational Operation Session 5 Course: T-0974 Algorithm & Object-Oriented Programming I Year: 2010."

Similar presentations


Ads by Google