<h3>
Answer: A) parabola</h3>
Some degenerate parabola cases form a single straight line, while other cases form one pair of parallel lines.
A degenerate hyperbola forms two lines that intersect at the vertex of the cone. We can rule out choice B.
A degenerate circle is a single point, so we can rule out choice C.
A degenerate ellipse is also a single point. Any circle is an ellipse (but not the other way around). We can rule out choice D.
Answer:
Hope this is what you are looking for! :)
Answer:
y = 5/8x + 12
Step-by-step explanation:
Slope = change in y/change in x
slope = 5/8
Using y = mx + b find b.
y = 5/8x + b
-2 = 5/8(-4) + b
b = 1/2
y = 5/8x + 12
<em>good luck, i hope this helps :)</em>
#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)
Step-by-step explanation:
First put it in point slope for y = mx + b
y = -2x + 5
Now plug in what ever number you want for x and solve.