Answer:
c. You use separator.join(a_list) where a_list is a list of strings.
Step-by-step explanation:
The join() is an in-built string method which returns a string concatenated with the elements of an iterable. It concatenates each element of an iterable (such as list, string and tuple) to the string and returns the concatenated string.
The syntax of join() is:
string.join(iterable)
From the above syntax, the string usually mean a separator and the iterable will be a string or list or tuple.
The answer is C.
c. You use separator.join(a_list) where a_list is a list of strings.
It is not A because the iterable could be a string. It is not D because the separator is outside not in the bracket.