## Question 1 Given the following array and target value, what will be the answer? nums = [3, 6, 7] target = 10 ### Options 1. result = [[3, 7]] Correct This combination sums up to the target value. ---------------------------- 2. result = [[3, 6], [3, 3, 3]] Incorrect ---------------------------- 3. result = [] Incorrect ---------------------------- 4. result = [[7], [3, 6]] Incorrect ---------------------------- --------------------------------------------- ## Question 2 Given the following array and target value, what will be the answer? nums = [2, 3, 5] target = 5 ### Options 1. result = [[5]] Incorrect ---------------------------- 2. result = [[2, 3], [5]] Correct These combinations sum up to the target value. ---------------------------- 3. result = [[2, 3, 5]] Incorrect ---------------------------- 4. result = [[2, 3]] Incorrect ---------------------------- --------------------------------------------- ## Question 3 Given the following array and target value, what will be the answer? nums = [5, 10, 25] target = 15 ### Options 1. result = [[5, 5, 5], [10]] Incorrect ---------------------------- 2. result = [[5, 5], [5, 10]] Incorrect ---------------------------- 3. result = [[5, 5, 5], [5, 10]] Correct These combinations sum up to the target value. ---------------------------- 4. None of the above Incorrect ---------------------------- --------------------------------------------- ## Question 4 Given the following array and target value, what will be the answer? nums = [3, 4, 9] target = 12 ### Options 1. result = [[3, 3, 3, 3], [4, 4, 4], [9, 3]] Correct These combinations sum up to the target value. ---------------------------- 2. result = [[3, 3, 3, 3], [4, 4, 4]] Incorrect ---------------------------- 3. result = [[3, 3, 3], [4, 4, 4], [9, 3]] Incorrect ---------------------------- 4. result = [[9, 3]] Incorrect ---------------------------- ---------------------------------------------