Home / Report Question

Q. Select all options that print.
  • 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’)

Correct Answer: C