Suppose there is an event with a 25% chance of happening. Which of these describes a simulation of the event happening?
a RAND() >= 0.25
b RAND() >= 25
c RAND() <= 0.75
d RANDBETWEEN(1,100) >= 25
e RANDBETWEEN(1,100) <= 25



Answer :