What percentage of the time does the following method return true?
public boolean sometimesTrue()
{
Random generator = Random.generator();
if (generator.nextInt(100) < 55)
{
return true;
}
return false;
}
There are no hints for this question