## Question 1 What is the output for the following input? arr = [3, 9, 11, 12, 17, 21] t = 26 ### Options 1. [0, 5] Incorrect ---------------------------- 2. [1, 4] Correct 9 and 17 values of 1st and 4th indices, respectively, add up to generate 26. ---------------------------- 3. [2, 3] Incorrect ---------------------------- 4. [3, 5] Incorrect ---------------------------- --------------------------------------------- ## Question 2 What is the output for the following input? arr = [-10, 7, -5, -16, 0, -11, 14] t = 4 ### Options 1. [2, 6] Incorrect ---------------------------- 2. [0, 1] Incorrect ---------------------------- 3. [2, 5] Incorrect ---------------------------- 4. [0, 6] Correct -10 and 14 values of 0th and 6th indices, respectively, add up to generate 4. ---------------------------- --------------------------------------------- ## Question 3 What is the output for the following input? arr = [-23, -8, -17, 3, 0, -31, 19, -12, 71] t = -17 ### Options 1. [3, 6] Incorrect ---------------------------- 2. [0, 8] Incorrect ---------------------------- 3. [2, 4] Correct -17 and 0 values of 2nd and 4th indices, respectively, add up to generate -17. ---------------------------- 4. [4, 8] Incorrect ---------------------------- ---------------------------------------------