VSATIN VSATIN Computers and Technology Answered What type of error occurs in this program? listA = [10, 3, 11, 4, 1] num1 = listA[2] num2 = listA[8] sum = num1 + num2 print(sum) A. Logic Error B. Runtime Error C. List Error D. Syntax Error