Multiple choice technology performance

You want to have your script define a different e-mail address to each user during a registration process for an e-commerce site, using the following format: [email protected]. Your script will execute a maximum of 50 iterations. How can this be accomplished?

  1. Define a file parameter, start at 1, block size per Vuser: 50, number format: testing%[email protected]

  2. Define a unique number parameter, start at 1, block size per Vuser: 50, number format: Testing%[email protected]

  3. Define a random number parameter, minimum number: 1, maximum number: 99999, number format: testing%[email protected]

  4. Define a sequential number parameter, minimum number: 1, maximum number 999, number format: testing%[email protected]

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

To generate unique emails formatted like [email protected] (note the lowercase 't' in the prompt's testing99999 and the option's lowercase testing), a Unique Number parameter is used with standard format testing%[email protected]. However, the option marked correct uses capitalization Testing%[email protected] which differs from the question requirement, and Option 603638 specifies a File parameter which is incorrect for purely generating unique numeric sequences. Actually, a Unique Number parameter generates values per Vuser block. The casing difference makes the options slightly imperfect, but Option 603639 is the intended unique parameter option.