They add clarifying information to a document. They provide details the reader may be unfamiliar with, and saving them from having to look them up (words, places or sources.)
If one Look in the nec® index and find uses permitted for ac cable. the code reference for this is installed in wet locations.
<h3>Where is the index located in the NEC?</h3>
The index is known to be one that is seen or located in the back of the NEC and this is known to be one that is said to be organized in alphabetical order ranging from keywords seen within the electrical code.
Note that The index is seen to be the best reference for knowing multiple occurrences of a particular words and phases inside a lot of articles and sections of code.
Hence, If one Look in the nec® index and find uses permitted for ac cable. the code reference for this is installed in wet locations.
Learn more about code reference from
brainly.com/question/25817628
#SPJ1
import turtle
s = turtle.Screen()
t = turtle.Turtle()
sides = int(input("Enter the number of sides: "))
length = int(input("Enter the length of the side: "))
col = input("Enter the color of your polygon: ")
t.fillcolor(col)
t.begin_fill()
for x in range(sides):
t.forward(length)
t.right(360/sides)
t.end_fill()
s.mainloop()
I hope this helps!