Binary

EasyMedium
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
Question 43
Easy

A fitness tracker is designed to count the number of steps a user takes during a day.

Identify the reason why an unsigned integer should be used to record the daily step count, rather than a signed integer.

Unsigned integers use a sign bit to increase precision

Unsigned integers cannot experience overflow errors

Unsigned integers can represent a greater range of positive values for the same number of bits

Unsigned integers are compatible with real numbers

Binary Questions

  1. GCSE
  2. /Computer Science
  3. /Binary