Respuesta :
Using the concepts of binary/decimal conversions, and computer representations, it is found that option c, that is, 16, is correct.
---------------------
- In an unsigned n-bit arithmetic in a computer, the smallest number that can be represented is 0.
- The greatest number that can be represented is: [tex]2^{n} - 1[/tex]
- If it is tried to represent a number greater than [tex]2^n - 1[/tex], an overflow error occurs, meaning that there are not enough bits to represent the desired quantity.
---------------------
- 4 bits are used to represent decimal numbers, thus, [tex]n = 4[/tex].
- The greatest number than can be represented is [tex]2^4 - 1 = 16 - 1 = 15[/tex].
- The next decimal number after 15 is 16, which is the first one to cause overflow.
- Thus, option C is correct.
A similar problem is given at https://brainly.com/question/17643864