Answer:
0.6
Step-by-step explanation:
Slope is the change in y divided by change in x.
x is weeks
y is height
We know plant grows 0.6 inches every week. This means per 1 week [change in x], the plant grows 0.6 inches [change in y]
Slope = 0.6/1 = 0.6
0.6 is the slope of the function
Answer:
She can use a calculator
Step-by-step explanation:
You can think of x && y || z as equivalent to: int func (int x, int y, int z) { if (x) { if (y) { return true; } } if (z) { return true; } return false; } Since both x and y are fixed to be non-zero values the first return statement is always hit. thats what i think