Multiple choice technology programming languages

The storage parmeters for a given table are: INITIAL=100, NEXT=100, MINEXTENTS=2, MAXEXTENTS=10, PCTINCREASE=20. If the first 3 extents are filled, what will the size of the FOURTH extent be?

  1. 120

  2. 140

  3. 144

  4. 240

  5. 400

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Extent sizes follow: INITIAL=100 (1st), NEXT=100 (2nd). For 3rd: 100 + 20% of 100 = 120. For 4th: 100 + 20% of 120 = 144 (since 20% of 120 is 24, and PCTINCREASE applies to the previous extent's size). Option A (120) is the 3rd extent. Option B doesn't match the calculation. Options D and E are incorrect applications of the percentage.