Question

Wi-Fi Diagnostic Tree
Figure 3-19 shows a simplified flowchart for troubleshooting a bad Wi-Fi connection. Use the flowchart to create a program that leads a person through the steps of fixing a bad Wi-Fi connection. Here is an example of the program's output:

Reboot the computer and try to connect. Did that fix the problem2 no Enter Reboot the router and Ery to conecet Did that fix the problem? yes Enter

Notice the program ends as soon as a solution is found to the problem. Here is another example of the program's output:

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Solution Code: #Wi-Fi Diagnostic Tree #Print the message print Reboot the computer and try to connect.) #Prompt the user to get input ask - input (Did that fix the problem?) #Check condition if ask no #Print the message print Reboot the router and try to connect.) #Prompt the user to get input ask = input (Did that fix the problem? ) #Check condition if ask -no: #Print the message print (Make sure the cables between the router and modem are plugged in firmly.) #Prompt the user to get input ask - input (Did that fix the problem?) #Check condition if ask --no: #Print the message print (Move the router to a new location.) #Prompt the user to get input ask = input (Did that fix the problem? ) #Check condition if ask no #Print the message print (Get a new router) #Print the message print ()

copyable code:

#Wi-Fi Diagnostic Tree

#Print the message

print ("Reboot the computer and try to connect.")

#Prompt the user to get input

ask = input("Did that fix the problem? ")

#Check condition

if ask == 'no':

    #Print the message

    print ("Reboot the router and try to connect.")

    #Prompt the user to get input

    ask = input("Did that fix the problem? ")

    #Check condition

    if ask == 'no':

        #Print the message

print ("Make sure the cables between the router and modem are plugged in firmly.")

        #Prompt the user to get input

        ask = input("Did that fix the problem? ")

        #Check condition

        if ask == 'no':

            #Print the message

            print ("Move the router to a new location.")

            #Prompt the user to get input

            ask = input("Did that fix the problem? ")

            #Check condition

            if ask == 'no':

                #Print the message

                print ("Get a new router")

#Print the message

print ("")

Add a comment
Know the answer?
Add Answer to:
Wi-Fi Diagnostic Tree Figure 3-19 shows a simplified flowchart for troubleshooting a bad Wi-Fi connection. Use...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Need help completing the following 2 programs using PyCharm. Any help is appreciated. Language is Python....

    Need help completing the following 2 programs using PyCharm. Any help is appreciated. Language is Python. Task: Complete the two programs in Python and submit the source code here for grading. Program 1:  Sort Three Numbers(50 points): Design a program that asks user to enter any three integer numbers. The program should display the three numbers in descending order. Program 2: WiFi Diagnostic Tree(50 points): Download the attached file, follow the instruction, and complete and submit the code here for grading....

  • Using basic c++ write a separate code for each question. 1. Palindrome if else • Try...

    Using basic c++ write a separate code for each question. 1. Palindrome if else • Try to find if a 5 digit input number is a palindrome • Get one 5 digit number from user • Output: Enter a five-digit integer: 12345 12345 is not a palindrome Enter a five-digit integer: 34543 34543 is a palindrome 2. WiFi Diagonostics using multiple ifs PRINT: This program will help you diagnose a bad WiFi connection. 1 st level Check the below (Use...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT