Select all options that print.
Select all options that print.
hello-how-are-you
a. print(‘hello’,‘how’,‘are’,‘you’)
b. print(‘hello’,‘how’,‘are’,‘you’ + ‘-‘ * 4)
c. print(‘hello-‘ + ‘how-are-you’)
d. print(‘hello’ + ‘-‘ + ‘how’ + ‘-‘ + ‘are’ + ‘you’)