Answer:
y = -6x - 7
Step-by-step explanation:
y = mx + b
5 = -6(-2) + b
5 = 12 + b
b = -7
y = -6x - 7
Answer:
(x, y ) → (x + 2, y - 4 )
Step-by-step explanation:
Compare the coordinates of 2 corresponding points in the original and the image, that is
B(- 5, 4 ) → B'(- 3, 0 )
To translate from B → B'
We require a shift of 2 units right in the x direction and 4 units down in the y direction, that is
(x, y ) → (x + 2, y - 4 ) ← translation rule
Answer:
II. int z;
Step-by-step explanation:
int z;
is the best option, because on the next line you will define the variable as
z = (x + y) / 2;
you can also use int z=0; but it is not necessary according to the code segment given.