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.
Jump into concepts and practice - no test required
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.
+---------------------+
| 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.