MCQOPTIONS
Saved Bookmarks
| 1. |
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’) |
| Answer» D. print(‘hello’ + ‘-‘ + ‘how’ + ‘-‘ + ‘are’ + ‘you’) | |