Answer:
C
Step-by-step explanation:
Both triangles have three angles of the same value.
Remember that the angles in all triangles add up to 180°.
Let's use that to find out the unknown angles.
For the first triangle:
180 - 82 - 43 = 55°
55° is also in the second triangle.
Let's check with the second triangle:
180 - 82 - 55 = 43°
43° is also in the first triangle.
Therefore, both triangles are similar as the angles in both triangles are the same - 82°, 43° and 55°.
Hence, C.
Answer:
117.5
Step-by-step explanation:
y= 3.5x + 30, where x = his number of toys sold
y= 3.5(25) + 30
y= 117.5
Answer:
question 2 answer you wrote correct
question 3 answer is 20
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);
}
}