Answer:
How to do the estimation
Step-by-step explanation:
He can use the probability of how many people chose English and multiply by 9.7 since there are 970 people / 100 people who asked = 9.7
The answer is B.
Function means every x corresponds to one unique y value. ACD all have duplicates correspondence.
Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}
Answer:
2 games.
Step-by-step explanation:
2.5 + 1.8 = 4
4 divided by 2 = 2
Answer: True
Step-by-step explanation:
The sum of the residuals is always 0 so the plot will always be centered around the x-axis. An outlier is a value that is well separated from the rest of the data set. An outlier will have a large absolute residual value.