What is a syntax error?
mistake in the program where rules are not followed; undefined variable, parenthesis missing, indentation, etc
What is a logic error?
(you added instead of multiplying) Ex. MOD 2= 1 returns even – logic is wrong
What does this mean?
If (my list) [item] = val
this is a condition statement that sents the index from the list to val
Return happened outside of for loop because it might loop that return statement again and again. T or F?
T
what is the easiest way to solve a repeat _ times loop?
Multiply the number of times and the increment value
Example: result= 3 times
repeat 4 times
result= result +6
Display result(6*4) +3 = 27