Answer:
b
Step-by-step explanation:
Four to the fifth power is...
4•4•4•4•4=1,024
(0,3) because if you go up six on the Y axis you get three. If you go two over on the X axis you reach zero.
1st and 2nd pictures are for finding area and 3rd picture is for finding perimeter
hope you understood well and if not and you can ask again
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);
}
}