Answer:
Receiving unexpected results from a program
Explanation:
Logic errors are due to the program not producing a desired result.
Er..... i do not know the answer to this
Answer:
a set of instructions that can be run multiple times throughout a program
Explanation:
Answer:
for e in range(6, 15, 2):
for o in range(5, 15, 2):
calc = e+o
print(e, "+", o, "=", calc)
Explanation: