23
ARVIN santos buendia

Operators

Embed Size (px)

DESCRIPTION

For computer LT 4th quarter

Citation preview

Page 1: Operators

ARVIN

santosbuendia

Page 2: Operators
Page 3: Operators
Page 4: Operators
Page 5: Operators
Page 6: Operators
Page 7: Operators
Page 8: Operators
Page 9: Operators
Page 10: Operators
Page 11: Operators
Page 12: Operators
Page 13: Operators
Page 14: Operators
Page 15: Operators
Page 16: Operators
Page 17: Operators

01

Page 18: Operators

1000

Page 19: Operators

1110

Page 20: Operators

NOTE :NOTE : PARENTHESIS can be used to OVERRIDE the order of

precedence and force some parts of an expression to be

evaluated first before the other parts.

( 3 + 7 ) * ( 9 - 2 ) = 70

! ( 0 || 1 ) = 0

NOT ALL ALGEBRAIC STATEMENTS are allowed as VISUAL

BASIC EXPRESSION that’s why you need to convert it.

Page 21: Operators
Page 22: Operators

Evaluate the given arithmetic equation below to arrive with a single numerical value.

8 + ( 3 / 2 )

( 9 + ( 27 / 3 )) / - 3 * 3

5 - 8 + 2 * 2

Page 23: Operators

Solve the following Relational and Logical Equation.

( 5 + 2 ) + ( -5 + 5) >= 77

( 3 - 2 * 5 * 2 ) != 125

1 && 0 || ( 1 && !0 )