answersLogoWhite

0

Counter line is the imaginary line joining the equal altitudes (Elevations).

User Avatar

Wiki User

11y ago

Still curious? Ask our experts.

Chat with our AI personalities

DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
JudyJudy
Simplicity is my specialty.
Chat with Judy
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao

Add your answer:

Earn +20 pts
Q: What is a counter line?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

What is the correct way to add 1 to the count variable?

A counter variable is "incremented" (the step number, 1 in this case, is added to it) in any of the following four ways: $counter = $counter + 1;$counter += 1; //this is shorthand for the above $counter++; //postfix increment operator $counter = 0;echo $counter++;The output would be 0++$counter; //prefix increment operator $counter = 0; echo ++$counter;The output is 1


What rhymes with counters?

Encounter, bean counter, over the counter, under the counter,


How do you represent 48 divided by 6 equals 8 using subtraction?

A) Subtract 6 from 48. If the result less than 6 or 0 you made a mistake. Result is 42. Hence start a counter with a value of 1. B) Subtract 6 from 42. If the result less than 6 or 0 you made a mistake. Result is 36. Hence increment the counter by 1. Now counter value is 2. C) Subtract 6 from 36. If the result less than 6 or 0 you made a mistake. Result is 30. Hence increment the counter by 1. Now counter value is 3. D) Subtract 6 from 30. If the result less than 6 or 0 you made a mistake. Result is 24. Hence increment the counter by 1. Now counter value is 4. E) Subtract 6 from 24. If the result less than 6 or 0 you made a mistake. Result is 18. Hence increment the counter by 1. Now counter value is 5. F) Subtract 6 from 18. If the result less than 6 or 0 you made a mistake. Result is 12. Hence increment the counter by 1. Now counter value is 6. G) Subtract 6 from 12. If the result less than 6 or 0 you made a mistake. Result is 6. Hence increment the counter by 1. Now counter value is 7. H) Subtract 6 from 6. If the result is not 0 you made a mistake. Result is 0. Hence increment the counter by 1. Now counter value is 8. Since we have nothing more to subtract from stop the process. The last value of the counter was 8 and so the quotient is 8.


How do you draw a octagon?

Draw a line sideways for the top side then draw a diagonal going out on either end of the other line then draw a line downwards from that line then draw another diagonal line going inwards from the line before then draw a straight line across on that one then a diagonal line outwards on that line then do a line going up on the before then do a diagonal line inwards joining the before and the starting lineA quicker waydraw two equal sized squares. place one over the other (properly centered) and turn the top one 45 degrees (clockwise or counter-clockwise, your choice) draw along the edge of the top square where it crosses the exposed parts of the lower square. Remove the top square, erase the "points of the lower square and what remains is a perfect octagon.


When you use a mod-2 counter what binary number will you be able to count to?

1 is the highest number you can count to using a mod-2 counter.