What Will Be The Output Of The Following Java Code Snippetp #1039
What will be the output of the following Java code snippet?</p> <pre><code class="language-text">int a = random.nextInt(15) + 1;</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Util More Utility Classes - Java Random Number - Quiz No.1.
What will be the output of the following Java code snippet?
int a = random.nextInt(15) + 1;
Random number between 1 to 15, including 1 and 15
Random number between 1 to 15, excluding 15
Random number between 1 to 15, excluding 1
Random number between 1 to 15, excluding 1 and 15