What Will Be The Output Of The Following Java Code Snippetp #1040
What will be the output of the following Java code snippet?</p> <pre><code class="language-text">int a = random.nextInt(7) + 4;</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(7) + 4;
Random number between 4 to 7, including 4 and 7
Random number between 4 to 7, excluding 4 and 7
Random number between 4 to 10, excluding 4 and 10
Random number between 4 to 10, including 4 and 10