I just finished an exam, and one of the question was in summary:
Given an empty array of size 1000, what is the amortized cost of inserting n elements into the array? When the array is full, instead of doubling the array, we increase it by 1000 and copy all the elements into the new array as you would for dynamic tables.
I answered O(n) but I'm not at all sure of my answer. I know the amortized run-time of a doubling dynamic table is 2, but I could not find much information about dynamic-tables that grow a constant size.