Answer:
-4
Step-by-step explanation:
('+')('-') = ('-')
Therefore,
(+2)(-2) = (-4)
Answer:

Step by step
Remember, a reference angle is a positive acute angle that represents an angle θ of any measurement.
a)
, then its reference angle is 
b)
is in the second cuadrant, then its reference angle is 
c)
, then it is in the first cuadrant and the reference angle is
.
d)
and it is in the third cuadrant, then its reference angle is 
Answer:
Step 3
Step-by-step explanation:
This is the right one because you are adding two thing in step two which lead to step 3
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);
}
}