answersLogoWhite

0

What else can I help you with?

Related Questions

Why do parallel lines always make vertical angles?

Wrong statement. Parallel lines don't always make vertical angles without the transversal, the line that passes through these lines. Without the transversal, we can't make the conclusion that parallel lines form vertical angles.


These are vertical lines parallel to the prime meridian?

Vertical lines parallel to the prime meridian are lines of longitude.


Are vertical lines parralel?

Yes, all vertical lines are parallel, for a given coordinate system.


How many angles are formed by two lines and a transversal?

If the two lines are parallel, then you get 4 pairs of vertical angles. If the two lines are not parallel, then we get 6 pairs of vertical angles.


Are the lines in the capital l parallel or perpendicular?

I, the top and bottoms lines are parallel, but the vertical line is perpendicular to the top and bottom lines.


What is symbol for congruent?

Three vertical parallel lines: |


What type of line is perpendicular to a vertical line What type of line is parallel to a vertical line?

all vertical lines are parallel to waht type of line?


What is true about the slope of parallel lines?

The slopes will be the same. It is also possible that both parallel lines have no slope defined - if they are vertical.


Can parallel lines form vertical angles?

Yes, they ALWAYS do!


Are parallel lines always diaganol?

no; they can be vertical and horizontal as well.


What are lines that aren't parallel nor intersecting?

Skew lines There is a vertical (or horizontal) and a diagonal!


Write and execute program to make five vertical lines parallel to each other on the screen in qbasic?

In QBASIC, you can use the LINE statement to draw vertical lines. Here’s a simple program to draw five vertical lines parallel to each other: SCREEN 0 FOR i = 1 TO 5 LINE (50 * i, 0)-(50 * i, 200), 15 ' Draws vertical lines at intervals of 50 pixels NEXT i This code sets the screen mode and uses a loop to draw five vertical lines spaced 50 pixels apart, from the top to the bottom of the screen. Adjust the coordinates and color as needed.