Principal = 1600
annual interest = 6% / year
period = 7 years
Future value after 7 years
= 1600(1+0.06)^7
=1600(1.06^7)
=$2045.81
=$2046 (to the nearest dollar)
Answer:
The ferris wheel travelled 434.717 ft.
Step-by-step explanation:
Assuming that the ferris wheel is a perfect circle, then it's height is the same as the diameter of the circle, therefore it's radius is:
radius = height/2 = 246/2 = 123 ft
The distance travelled by the ferris wheel is the same as the length of the arc created by a angle of (9pi/8). The length of an arc is given by:
length = r*(angle in radians)
length = 123*(9pi/8)
length = 434.717 ft
The ferris wheel travelled 434.717 ft.
If you are finding the perimeter I believe you would just add up the four sides, getting 46
Hey there!!
Let's take the first number as ' x '
Then, the second number would be ' x + 1 '
Sum of these = 183
Hence,
Hence, the small integer is 91
Hope my answer helps!
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);
}
}