Ddddddddddddddddddddddddddddddddddddddddd
Answer:
1. D.Autodesk and microstation.
2. D. the creation of a computer model, paricularly for purposes of studying.
3. A.internet delivered through standard household phone lines.
4. C.3-D sculptures used to pray for fertility.
5. C.technology.
Explanation:
Answer and Explanation:
def loop(start, stop, step):
return_string = ""
if step == 0:
step = 1
if start > stop: # the bug was here, fixed it
step = abs(step) * -1
else:
step = abs(step)
for count in range(start, stop, step):
return_string += str(count) + " "
return return_string.strip()
Answer:
the number order is
1
5
2
4
3
Explanation:
I am sure it is correct. Thanks :)