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

 

 

 

 

Binary mode F F 3 b

0.

b

 

 

 

 

 

10111

 

+11010

0.

b

 

2

2

 

 

 

 

=

 

 

 

 

110001.

b

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

76548 1210

 

 

Octal mode F F 3 o

0.

o

lll4(o) 76548 \

 

 

lll1(d)1210

0.

o

 

 

 

=

516.

o

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

12016 or 11012

 

 

Hexadecimal mode F F 3 h

0.

H

12016 l2(or)

 

 

lll3(b)11012

0.

H

 

 

 

=

12d.

H

E-29