0
0
Intro to Computingfundamentals~10 mins

Output devices (monitor, printer, speaker) in Intro to Computing - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to print the word 'Hello' on the screen using the output device.

Intro to Computing
print([1])
Drag options to blanks, or click blank then click option'
A'Hello'
BHello
Cprint
Dscreen
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting quotes around the text.
Trying to print without using the print function.
2fill in blank
medium

Complete the sentence to name an output device that produces sound.

Intro to Computing
An output device that produces sound is a [1].
Drag options to blanks, or click blank then click option'
Amonitor
Bprinter
Cspeaker
Dkeyboard
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing keyboard which is an input device.
Confusing monitor with speaker.
3fill in blank
hard

Fix the error in the sentence describing an output device.

Intro to Computing
A [1] is used to print documents on paper.
Drag options to blanks, or click blank then click option'
Amouse
Bscanner
Cmonitor
Dprinter
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing scanner which is an input device.
Confusing monitor with printer.
4fill in blank
hard

Fill both blanks to complete the dictionary that maps output devices to their function.

Intro to Computing
output_functions = { [1]: 'produces sound', [2]: 'displays images' }
Drag options to blanks, or click blank then click option'
A'speaker'
B'printer'
C'monitor'
D'keyboard'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing input devices like keyboard in output dictionary.
Swapping printer and monitor functions.
5fill in blank
hard

Fill all three blanks to create a list of output devices including a monitor, printer, and speaker.

Intro to Computing
output_devices = [[1], [2], [3]]
Drag options to blanks, or click blank then click option'
A'monitor'
B'printer'
C'speaker'
D'mouse'
Attempts:
3 left
💡 Hint
Common Mistakes
Including input devices like mouse in the output devices list.
Forgetting to put quotes around device names.