Question: Which statement turns `menu` into the variable `menu_string` below?
- menu_string = cell2mat(join(menu, newline))
- menu_string = cell2mat(join(menu, '\n'))
- menu_string = join(menu, newline)
- menu_string = cell2mat(pad(menu))
Answer: The correct answer of the above question is Option A:menu_string = cell2mat(join(menu, newline))