3 seconds,if it goes 10 ft per second than it is 30 seconds
Answer:
structured, because it is charts and diagrams
Answer:
x) Rent (dollars)
(y)
0 3
1 8
2 13
3 18
4 23
Which equation best shows the relationship between x and y?
y = 5x + 3
y = x + 8
y = 5x + 8How much more would the value of y be on the graph than its value in the table when x = 12?
20
30
60
70
Question 7(Multiple Choice Worth 1 points)
(05.01 LC)
The graph below shows the height through which The values on the y-axis are from 0 to 125 in increments of 25 for each grid line. A line is shown connecting points on ordered pair 1, 25 and 2, 50 and 3, 75 and 4, 100. The title of the graph is Rate of Ascent.
What is the rate of change for the relationship represented in the graph?
50
25
fraction 1 over 25
fraction 1 over 50
Explanation:
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
if (boolean expression)
{
Do statement;
}
// A block if statement: { } required
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Note