I've done this test before
The factor should be x+7 so, none of the above.
Hope I helped! ( Smiles )
Answer:
444
Step-by-step explanation:
since 37/100 students liked chocolate you need to scale that data to the new data size and find thirty seven percent of 1200 which is 444
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);
}
}