Answer:
Answer is D, simplify the expression and solve.
Answer:
Step-by-step explanation:
(29, 35) (43, 21)
(21 - 35)/(43 - 29) = -14/14 = -1
y - 35 = -(x - 29)
y - 35 = -x + 29
y = -x + 64
D, Each x value has one and only one y value.; This is because if an x-value repeats itself then it is not a function. You can test this on a graph by drawing a vertical line on it. If the vertical line intercepts the line more than once anywhere on the graph, then it is not a function.
Answer:
.9
Step-by-step explanation:
Using pseudocode:
printArray(arr[], integers)
DECLARE integers
integers = SizeOf(arr)
FOR i = 1 to integers // loop from 1 to the number of elements in arr[]
print(i)
print('')
i = i + 1
ENDFOR
END