Answer:
- C. Her sister grew about 0.75 inch each month.
Step-by-step explanation:
Given function:
The function is linear and it represents:
- y - current heigt of baby
- x - number of months passed
- 0.75 - the slope is the monthly growth rate
- 15 - the y-intercept, is the initial height of baby
According the above explanation the correct answer choice is C
9514 1404 393
Answer:
y = 1
Step-by-step explanation:
Recognize that 25 and 125 are powers of 5 and rewrite the equation in terms of powers of 5.
The applicable rules of exponents are ...
(a^b)^c = a^(bc)
(a^b)/(a^c) = a^(b-c)
(a^b)(a^c) = a^(b+c)
__
Your equation can be written as ...

Now this can be solved as an ordinary linear equation.
8 = 8y . . . . . . add 5y to both sides
1 = y . . . . . . . divide by 8
The solution is y = 1.
You can eliminate graphs A and C because the lines are dotted and you can eliminate graph B because the shaded part is below the solid line and the equation is telling you to shade above so the answer is D
Answer:
The minimum number of assignment statements needed is 5
Step-by-step explanation:
To write the algorithm, we apply the strategy of interchanging the values of variables in the assignment statements.
Assume "tmp" is the new variable, let assign tmp to w
The algorithm is:
Procedure exchange (w,x,y,z: integers)
tmp := w
w := x
x := y
y := z
z := tmp
return (w,x,y,z)
end
From the algorithm, it is obvious that there will be a minimum of 5 assignment statements needed.