Answer:
it'll be a graph like this. the blue line is y<-x+2 and you would shade everything below this line because it's less than. the green is y>x-3 so you would shade everything above this line because it is greater than.
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:
Final answer is c. 15
Step-by-step explanation:
We need to find about what is the first term in the sequence for which d = -2 and a7 = 3
We will use nth term formula of arithmetic sequence.

we have been given a7 that means 7th term is 3
so plug n=7, d=-2 and a_n=3 into above formula




Hence final answer is c. 15
Answer:
option c is the correct answer
Answer:
5
Step-by-step explanation: