C) they are parallel
as the slopes must be equal due to the fact they are both perpendicular to line n ( for a perpendicular line you flip the slope and change the sign , so both of them being perpendicular to n the slopes must be equal)
They cant interest at all since they are perpendicular and they may not be the same line
The value of k in <span>
1/2 k+6=4k-8</span>
is 4
The graph of a function can be sketched by plotting points.
First and foremost, it is to be determined if the function is odd/even or periodic. Next, we find the x and y intercepts. To sketch a graph of a function, one can start by plotting a few points that lie on the graph using the coordinates given by the function. For example, if the function is y = x², then points (0, 0), (1, 1), and (2, 4) can be plotted by substituting the values of x into the function to find the corresponding values of y.
Subsequent to this, one can connect the points with a smooth curve to form the graph of function. If the function is a straight line, the graph will be a straight line. If the function is quadratic, the graph will be a parabola. The graph may take on a more complicated shape for more complex functions.
Read more about the graph of a function on:
brainly.com/question/26857518
#SPJ4
Answer:
847.8 sq meters
Step-by-step explanation:
Formula:
A= 2πrh + 2πr^2
A= 2(3.14)(9)(6) + 2(3.14)9^2
A= 339.12 + 508.68
A= 847.8
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.