Multiple choice technology platforms and products

In a sequence generator, if cycle option is checked with start value=10 ,current value=15 ,increment value=5 and end value=20, the sequence for 5 records would be _____

  1. 10,11,12,13,14

  2. 15,20,10,15,20

  3. 15,20,15,20,15

  4. 15,15,15,15,15

  5. session fails

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

With cycle checked, the sequence wraps around when it hits the end value. Starting from current=15, it generates: 15 (current), 20 (15+5), then cycles to 10 (start), then 15 (10+5), then 20 (15+5).