0
0
Intro to Computingfundamentals~10 mins

Wi-Fi and network connections in Intro to Computing - Draw & Build Visually

Choose your learning style9 modes available
Draw This - beginner

Draw a flowchart that shows how a device connects to a Wi-Fi network and accesses the internet. Include steps for checking Wi-Fi availability, entering the password, connecting to the router, and verifying internet access.

10 minutes
Hint 1
Hint 2
Hint 3
Hint 4
Grading Criteria
Start and End symbols present
Decision diamonds used for checking Wi-Fi availability, password correctness, and internet access
Process rectangles used for actions like entering password and connecting to router
All decision paths lead to a clear outcome
Flow direction is clear and logical
Solution
  +---------------------+
  | Start               |
  +----------+----------+
             |
             v
  +---------------------+
  | Check Wi-Fi available? |
  +----------+----------+
             |
      +------+------+
      |             |
     Yes           No
      |             |
      v             v
  +---------------------+   +---------------------+
  | Enter Wi-Fi password |   | Show 'No Wi-Fi' msg |
  +----------+----------+   +----------+----------+
             |                         |
             v                         v
  +---------------------+       +-----+-----+
  | Password correct?   |       | End       |
  +----------+----------+       +-----------+
             |
      +------+------+
      |             |
     Yes           No
      |             |
      v             v
  +---------------------+   +---------------------+
  | Connect to router   |   | Show 'Wrong password'|
  +----------+----------+   +----------+----------+
             |                         |
             v                         v
  +---------------------+       +-----+-----+
  | Check internet access|       | End       |
  +----------+----------+       +-----------+
             |
      +------+------+
      |             |
     Yes           No
      |             |
      v             v
  +---------------------+   +---------------------+
  | Show 'Connected'    |   | Show 'No internet'  |
  +----------+----------+   +----------+----------+
             |                         |
             v                         v
          +--+-------------------------+--+
          |             End                |
          +-------------------------------+

This flowchart starts by checking if Wi-Fi is available. If not, it shows a message and ends.

If Wi-Fi is available, the user is asked to enter the password. If the password is wrong, a message is shown and the process ends.

If the password is correct, the device connects to the router.

Next, it checks if the internet is accessible. If yes, it shows a 'Connected' message; if no, it shows 'No internet' message.

Finally, the flow ends after showing the connection status.

Variations - 2 Challenges
[intermediate] Draw a flowchart for connecting a device to a Wi-Fi network that includes retrying password entry up to 3 times before stopping.
[advanced] Draw a flowchart for a device that can choose between multiple Wi-Fi networks, connect to the strongest one, and verify internet access.