osama syr
osama syr

Reputation: 27

Is it possible to predict what number will computer choose randomly?

I'm trying to know what number the computer will randomly choose. Will I need a specific algorithm? Or do I need artificial intelligence?

Upvotes: 0

Views: 1141

Answers (1)

Cal Irvine
Cal Irvine

Reputation: 1144

You can't predict a true random number, by definition, as it is random. Pseudorandom numbers can be predicted if you know both the algorithm being used and the seed number being provided.

https://www.howtogeek.com/183051/htg-explains-how-computers-generate-random-numbers/

Here's a good article on the different methods of generating random numbers.

Upvotes: 1

Related Questions