-h/4+5 is your answer
Hope this helps.
Answer:
B) Find the ratio of minutes to miles, 4:1. Multiply 7.5 by 4
Step-by-step explanation:
A bicyclist rides the same number of miles every minute. The ratio table below shows the number of miles she rides during certain amounts of time.
Biking Times and Distances
Number of Minutes Number of Miles
10 2.5
16 4
? 7.5
48 12
Which statement explains how to find the number of minutes it takes to bike 7.5 miles?
B) Find the ratio of minutes to miles, 4:1. Multiply 7.5 by 4....
Between the square roots of 7 and 8, because e^2 is equal to around 7.4, which is between 7 & 8. I hope this helps!
Hello!
We are trying to describe the behavior of the graph given in the question.
To help us understand how to solve this question, we would need to understand <u>concavity.</u>
There are two types of concavity:
- Concave <em>up</em>
- Concave <em>down</em>
When a graph is concave up, the slope of the line would look like a "U".
When a graph is concave down, the slope of the line would look like a "U" that is flipped upside down.
In this case, we can see that the graph is concave down.
We can tell that the <em>slope</em> is negative due to the fact that the slope is going <u>down,</u> which results in the graph having a negative slope.
We can also tell that the graph is decreasing due to the fact that the line is doing downward.
Answer:
C). negative and decreasing
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);
}
}