Complete the code to identify the device that connects different networks.
device = '[1]' # This device connects multiple networks
A Router connects different networks and directs data between them.
Complete the code to identify the device that connects devices within the same network.
device = '[1]' # This device connects devices in the same network
A Switch connects devices within the same network and forwards data to the correct device.
Fix the error in the code that assigns the device used to forward data within a local network.
local_device = '[1]' # Device forwarding data inside a local network
The correct device to forward data within a local network is a Switch.
Fill both blanks to complete the sentence about network devices.
A [1] connects different networks, while a [2] connects devices within the same network.
A Router connects different networks, and a Switch connects devices within the same network.
Fill all three blanks to complete the dictionary describing network devices.
network_devices = { '[1]': 'Connects different networks', '[2]': 'Connects devices within the same network', '[3]': 'Amplifies signals to extend network range' }Router connects different networks, Switch connects devices within the same network, and Repeater amplifies signals to extend network range.