NB- Solution is emboldened
import java.util.Scanner;
import java.util.Random;
public class RandomGenerateNumbers {
public static void main (String [] args) {
Random randGen = new Random();
int seedVal = 0;
seedVal = 4;
randGen.setSeed(seedVal);
System.out.println(randGen.nextInt(50) + 100);
System.out.println(randGen.nextInt(50) + 100);
return;
}
}
Answer:
11 miles per hour
Step-by-step explanation:
The biking speed is found by taking the miles and dividing by the hours
33 miles/ 3 hours
11 miles per hour
Answer:
They represent the rise and run of the graph.
Step-by-step explanation:
<em>The difference between the x-axis of the points represents the "run" of the graph (or how much you should run along x-axis to get to the next point.)</em>
<em>The difference between the y-axis of of the points represents the "rise" of the graph (or how much you should rise up the y-xis to get to the next point).</em>
The ratio of rise to run is the slope of the graph, which tells us how many steps should we take on the y-axis for every step we move forward on the x-axis.