Complete the code to identify the port used for connecting a keyboard.
device_port = '[1]'
The USB port is commonly used to connect keyboards to computers.
Complete the code to select the port used to connect a monitor for video output.
video_port = '[1]'
HDMI is the standard port for transmitting video and audio to monitors and TVs.
Fix the error in the code to correctly assign the wireless connectivity type.
connectivity = '[1]'
Wi-Fi is the wireless technology used for network connectivity.
Fill both blanks to create a dictionary mapping device types to their common ports.
device_ports = {'Keyboard': '[1]', 'Monitor': '[2]'}Keyboards usually connect via USB, and monitors use HDMI for video output.
Fill all three blanks to create a dictionary mapping device types to their connectivity methods.
connectivity_methods = {'Keyboard': '[1]', 'Monitor': '[2]', 'Internet': '[3]'}Keyboards connect via USB, monitors via HDMI, and internet connectivity is often wireless via Wi-Fi.