Author Topic: GATS  (Read 1412 times)


Bits?
Bits are a binary unit.
A basic 0 or 1.
They really aren't used referenced in torque specifically as you'll almost never need to break down more complex data forms into pure binary.
BITS; 0 1
OCTAL; 0 1 2 3 4 5 6 7
DECIMAL; 0 1 2 3 4 5 6 7 8 9
HEXADECIMAL; 0 1 2 3 4 5 6 7 8 9 A B C D E F

BITS; 0 1
OCTAL; 0 1 2 3 4 5 6 7
DECIMAL; 0 1 2 3 4 5 6 7 8 9
HEXADECIMAL; 0 1 2 3 4 5 6 7 8 9 A B C D E F
Yes?
I knew that already.