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