answersLogoWhite

0

a random no. is just random!:]

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

ReneRene
Change my mind. I dare you.
Chat with Rene
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga

Add your answer:

Earn +20 pts
Q: What is random number in?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How do you find a random number from random number table?

randomly look...


What is the random number for register number 270300?

Can't tell. It's random.


How do you get Visual Basic to generate a random number?

Or you can do Rnd*232 Where 232 is a number of your choice higher or lower number. I have used this in a Timer and works well.Valtros------------------------------------------------------------------------------------------------------------------AnswerUse the random function. The example below will give a random number between 1-100r = Random(1, 100)


Is an irrational number chosen at random is never a rational number?

An irrational number cannot be rational, so choosing at random is an irrelevance.


What is the difference between the functions rand random srand and randomize?

RAND: Rand uses a multiplicative congruential random number generator with period232 to return successive pseudo-random numbers in the range 0 to RAND_MAX. Return Value: Rand returns the generated pseudo-random number. RANDOM(): Random returns a random number between 0 and (num-1).random(num) is a macro defined in STDLIB.H. RANDOMIZE(): Randomize initializes the random number generator with a random value. Because randomize is implemented as a macro that calls the time function prototyped in TIME.H, you should include TIME.H when you use this routine SRAND(): The random number generator is reinitialized by calling srand with an argument value of 1.The generator can be set to a new starting point by calling srand with a given seed number.