## Question 1 Can the string "pineapplepenapple" be split into sequences separated by spaces using the following words from the dictionary? ["apple", "pen", "applepen", "pine", "pineapple"] ### Options 1. Yes Correct "pine apple pen apple" ---------------------------- 2. No Incorrect ---------------------------- --------------------------------------------- ## Question 2 Can the string "superdogs" be split into sequences separated by spaces using the following words from the dictionary? ["super", "ogs", "dog"] ### Options 1. Yes Incorrect ---------------------------- 2. No Correct We cannot split the provided string. ---------------------------- --------------------------------------------- ## Question 3 What is the goal of the word break problem? ### Options 1. To split a string into multiple substrings using a dictionary of available words Correct ---------------------------- 2. To merge multiple substrings into a single string using a dictionary of available words Incorrect ---------------------------- 3. To find the longest word in a string using a dictionary of available words Incorrect ---------------------------- 4. To find the shortest word in a string using a dictionary of available words Incorrect ---------------------------- ---------------------------------------------