Final answer:
When a seed value is specified for a random number generator in programming, it will result in the same sequence of 'random' numbers each time the program is run.
Step-by-step explanation:
In programming, when a seed value is specified for a random number generator, it will produce the same sequence of 'random' numbers each time the program is run. This is because the random number generator uses a deterministic algorithm based on the seed value to generate the sequence. For example, if a program uses a seed value of 123, it will always produce the same sequence of random numbers when run.