0
How computer calculate random. How we can make random function
For example random(6)=1,2,3,4,5,6
2 Answers
+ 1
Computers can generate truly random numbers by observing some outside data, like mouse movements or fan noise, which is not predictable, and creating data from it. This is known as entropy. Other times, they generate âpseudorandomâ numbers by using an algorithm so the results appear random, even though they arenât.
0
In programming language?