Multiple choice

The octal representation of an integer is 3428. If this integer were to be treated as an eight bit integer in an 8085 based computer, its decimal equivalent would have been

  1. 226

    • 98
  2. 76

    • 30
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

342 octal = (3*64) + (4*8) + 2 = 192 + 32 + 2 = 226 decimal. As an 8-bit integer, 226 is positive.