You can use the following logical operators between values in Base-ncalculations: and (logical product), or (logical sum), xor (exclusive or), xnor (exclusive nor), Not (bitwise complement), and Neg (negation).

The following are the allowable ranges for each of the available number systems.

Binary

1000000000

x

1111111111

 

0

x

0111111111

Octal

4000000000

x 7777777777

 

0

x 3777777777

Decimal

–2147483648

x 2147483647

Hexadecimal

80000000

x

FFFFFFFF

 

0

x

7FFFFFFF

Example 1: To perform the following calculation and produce a binary result:

101112  110102 1100012

Binary mode:

t b

0. b

10111 +11010 =

Example 2: To perform the following calculation and produce an octal result:

76548 1210  5168

Octal mode:

t o

0. o

lll4(o) 7654 \ lll1(d) 12 =

Example 3: To perform the following calculation and produce a hexadecimal and a decimal result:

12016 or 11012  12d16  30110

Hexadecimal mode:

t h

0. H

120l2(or) lll3(b) 1101 =

Decimal mode:

K

E-10