0
0
Intro to Computingfundamentals~10 mins

Routers and switches 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 device that connects different networks.

Intro to Computing
device = '[1]'  # This device connects multiple networks
Drag options to blanks, or click blank then click option'
ARouter
BSwitch
CHub
DRepeater
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing a switch with a router because both handle data.
Thinking a hub connects different networks.
2fill in blank
medium

Complete the code to identify the device that connects devices within the same network.

Intro to Computing
device = '[1]'  # This device connects devices in the same network
Drag options to blanks, or click blank then click option'
ARouter
BFirewall
CModem
DSwitch
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing a router with a switch.
Thinking a modem connects devices inside a network.
3fill in blank
hard

Fix the error in the code that assigns the device used to forward data within a local network.

Intro to Computing
local_device = '[1]'  # Device forwarding data inside a local network
Drag options to blanks, or click blank then click option'
ARouter
BSwitch
CGateway
DRepeater
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Router' which connects different networks, not local devices.
Confusing 'Gateway' with 'Switch'.
4fill in blank
hard

Fill both blanks to complete the sentence about network devices.

Intro to Computing
A [1] connects different networks, while a [2] connects devices within the same network.
Drag options to blanks, or click blank then click option'
ARouter
BSwitch
CModem
DHub
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping the roles of router and switch.
Choosing modem or hub which do not fit both blanks.
5fill in blank
hard

Fill all three blanks to complete the dictionary describing network devices.

Intro to Computing
network_devices = { '[1]': 'Connects different networks', '[2]': 'Connects devices within the same network', '[3]': 'Amplifies signals to extend network range' }
Drag options to blanks, or click blank then click option'
ARouter
BSwitch
CRepeater
DFirewall
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing repeater with firewall.
Mixing up router and switch roles.