> What is 1010 1010 binary to denary?

What is 1010 1010 binary to denary?

Posted at: 2014-12-18 
You could use Windows calculator in programmer mode or else just do the conversion yourself this way:

128 64 32 16 8 4 2 1

...1...0...1..0..1.0.1.0 = 128 + 32 + 8 + 2 = 170

128 64 32 16 8 4 2 1

...0...1..1....1.0.0.0.1 = 64 + 32 +16 + 1 = 113

170

~