Operators

Preview:

DESCRIPTION

For computer LT 4th quarter

Citation preview

ARVIN

santosbuendia

01

1000

1110

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.

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

Solve the following Relational and Logical Equation.

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

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

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

Recommended