Q. Select all options that print.
Code:
-
(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)
print(‘hello-‘ + ‘how-are-you’)