Respuesta :
Answer:
Below is the complete answer.
Step-by-step explanation:
Given the row of numbers
25060 12315 86244 97348 36173 32710 80033 16160
As we have to generate 12 random numbers between 01 and 99 from the above row of numbers.
Minimum Value = 01
Maximum Value = 99
25060
Lets take 25060 as seed in the calculator as
25060 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
85 90 62 45 26 97 40 55 67 17 10 32
12315
Lets take 12315 as seed in the calculator as
12315 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
33 20 26 68 73 09 46 14 82 74 17 04
86244
Lets take 86244 as seed in the calculator as
86244 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
54 93 02 50 37 01 86 51 38 28 23 36
97348
Lets take 97348 as seed in the calculator as
97348 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
04 79 01 86 51 02 50 37 38 28 23 36
36173
Lets take 36173 as seed in the calculator as
36173 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
13 03 28 17 14 31 98 47 40 48 68 19
32710
Lets take 32710 as seed in the calculator as
32710 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
22 80 42 03 27 89 98 46 14 31 72 56
80033
Lets take 80033 as seed in the calculator as
80033 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
29 86 51 01 23 64 37 36 35 72 14 59
16160
Lets take 16160 as seed in the calculator as
16160 ➡️ rand
[tex]randInt(1,99,12)[/tex]
Which will generate the following 12 random numbers between 01 and 99.
93 54 72 58 30 14 48 87 99 95 83 29
Keywords: number, random number generator
Learn more about random number generator from brainly.com/question/3795013
#learnwithBrainly