answersLogoWhite

0

At least 1 line of symetry?

Updated: 9/17/2023
User Avatar

Wiki User

11y ago

Best Answer

a straight line

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: At least 1 line of symetry?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you get line to neutral voltage form line to line voltage especially when there is unbalance in line to line voltage?

It is highly unusual for the supply system's line voltages to be unbalanced as the source is considered to be an infinite bus. On the other hand, it is not in the least unusual for the line currents to be unbalanced, as they are determined by the load. If a unbalanced star (wye) connected load has no neutral, then the phase voltages will become unbalanced.


How do you compute least count of a ruler?

1/16


What is the difference between line and stream editors?

A line oriented editor uses navigation and other means by line numbers. When you print a line, move to a line, or change something in a line all that is shown is the line itself, and not with the context of what is being changed. Line oriented editors were common when screen or page based editing was not available. These days most text editors will show at least a half to full page of where you are editing so you see the change in context.


What size drain line serves a washing machine?

Minimum 1 1/2"


Write a program to Print pyramid of numbers using loops in c?

#include <stdio.h> #include <conio.h> void main() { int height, line, i; clrscr(); scanf("%d", &height); for (i = 0; i < height - 1; ++i) printf(" "); printf("1\n"); for (line = 1; line < height; ++line) { for (i = 0; i < height - line - 1; ++i) printf(" "); for (i = 0; i < line; ++i) printf("%d", line + 1); printf(" "); for (i = 0; i < line; ++i) printf("%d", line + 1); printf("\n"); } getch(); }