Write a method called random100 that returns a random integer in the range of 1 to 100 (inclusive).
What will be an ideal response?
```
public int random100()
{
Random generator = new Random();
return generator.nextInt(100) + 1;
}
```
Computer Science & Information Technology
You might also like to view...
Comment on how each of the following entities or concepts contributes to the reusability of data structures:
a) Classes b) Composition
Computer Science & Information Technology
Unless the_________check box is selected,Access willfind any recordcontaining thesearch text withany combinationof uppercaseand lowercaseletters. A. Match Case B. Uppercase C. Lowercase D. Mirror Case
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology