Complete the code to print the word 'Hello' on the screen using the output device.
print([1])
The print() function outputs text to the monitor, which is an output device. The text must be in quotes to be recognized as a string.
Complete the sentence to name an output device that produces sound.
An output device that produces sound is a [1].A speaker is an output device that plays sound. Monitors and printers show images or text, keyboards are input devices.
Fix the error in the sentence describing an output device.
A [1] is used to print documents on paper.A printer is the output device that prints documents on paper. Scanners and mice are input devices, monitors display images.
Fill both blanks to complete the dictionary that maps output devices to their function.
output_functions = { [1]: 'produces sound', [2]: 'displays images' }The 'speaker' produces sound and the 'monitor' displays images. Printers print on paper and keyboards are input devices.
Fill all three blanks to create a list of output devices including a monitor, printer, and speaker.
output_devices = [[1], [2], [3]]
The list includes 'monitor', 'printer', and 'speaker', all output devices. The mouse is an input device and should not be included.