Multiple choice technology platforms and products

In a sequence generator, if start value=10 ,current value=11 ,increment value=1 and end value=20, then the sequence would start from_______

  1. 12

  2. 11

  3. 10

  4. 1

  5. session fails

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

In a sequence generator, the sequence starts from the CURRENT value, not the start value. The start value is only used if the current value is null. So with current=11, the sequence starts from 11.