Constant-Time Array Access
Accessing A[0], A[100], or A[1,000,000] requires the same number of address calculations.
There is no dependency on the number of preceding elements.
Therefore, indexed read and update operations are O(1).
This assumes ordinary array access rather than operations that first require searching for an index.