Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
In positional number systems, each digit slot carries a weight equal to a power of the base. For the decimal system, the base is ten. This question tests whether you remember that decimal place values are powers of 10 for both integer and fractional parts.
Given Data / Assumptions:
Concept / Approach:
The value of a number is sum(digit_i * base^i). In decimal, base = 10, so the weights are exclusively powers of 10. This holds for signed numbers, integers, and fixed/floating formats; sign and scaling do not change the underlying positional weights.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments