Answer:
1 3/50
Step-by-step explanation:
the .06 is in the hundreths place so it would be 6/100 or 3/50
now add the whole number to it to get 1 3/50
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)
Answer:
It's the last choice:
2x + y - 1 = 0.
Step-by-step explanation:
x - 2y - 3 = 0
Convert to slope-intercept form in order to find the slope:
-2y = -x + 3
y = 1/2x - 3/2
So the slope is 1/2. The slope of a line perpendicular to this is -1 / 1/2 = -2.
Using the point-slope form to find the required equation:
y - y1 = m(x - x1)
x = 4 and y = -7 so we have:
y + 7 = -2(x - 4)
y + 7 = -2x + 8
2x + y - 1 = 0 is the answer.