0
0
Intro to Computingfundamentals~10 mins

Ports and connectivity (USB, HDMI, Wi-Fi) 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 identify the port used for connecting a keyboard.

Intro to Computing
device_port = '[1]'
Drag options to blanks, or click blank then click option'
AUSB
BHDMI
CWi-Fi
DEthernet
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing HDMI with USB because both are ports.
Choosing Wi-Fi which is wireless, not a physical port.
2fill in blank
medium

Complete the code to select the port used to connect a monitor for video output.

Intro to Computing
video_port = '[1]'
Drag options to blanks, or click blank then click option'
AEthernet
BWi-Fi
CHDMI
DUSB
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing USB which is mainly for data and power.
Selecting Ethernet which is for network connections.
3fill in blank
hard

Fix the error in the code to correctly assign the wireless connectivity type.

Intro to Computing
connectivity = '[1]'
Drag options to blanks, or click blank then click option'
AHDMI
BUSB
CEthernet
DWi-Fi
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing Wi-Fi with Ethernet which is wired.
Choosing USB or HDMI which are physical ports.
4fill in blank
hard

Fill both blanks to create a dictionary mapping device types to their common ports.

Intro to Computing
device_ports = {'Keyboard': '[1]', 'Monitor': '[2]'}
Drag options to blanks, or click blank then click option'
AUSB
BHDMI
CWi-Fi
DEthernet
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping the ports between keyboard and monitor.
Using wireless options for wired devices.
5fill in blank
hard

Fill all three blanks to create a dictionary mapping device types to their connectivity methods.

Intro to Computing
connectivity_methods = {'Keyboard': '[1]', 'Monitor': '[2]', 'Internet': '[3]'}
Drag options to blanks, or click blank then click option'
AUSB
BHDMI
CWi-Fi
DEthernet
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing wired and wireless connections incorrectly.
Confusing Ethernet with Wi-Fi for internet.