Answer:
36 teachers
Step-by-step explanation:
total students=128+121+135=384
groups of 32=384/8=12
teachers=12x3=36
Answer:
C).
Step-by-step explanation:
One of the points on the graph that the path of bike b crosses is (6,60).
When you divide this to find the unit rate you get 10/1 therefore the equation of bike b= y+10X
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);
}
}