Guest User

Untitled

a guest
Apr 10th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. Your CIO wants a semi-automated network testing, so he can troubleshoot even if IT supporter, isnt there.
  2. Therefore, you must create a C# program undergoing the procedure for troubleshooting the network - that tells the user which hosts to ping, and asks the user whether it was good or bad. The program will not even ping - it expects the user keys ping commands into another window and tell the program outcome.
  3. First Draw a decision tree for the sequence of pings - design it according to how you would debug your network. A decision tree consists of questions and answers and new questions that may arise in this context. A section can for example look like this
  4.  
  5. Ping 192.168.0.2
  6. |
  7. |
  8. Did it work?------------> the net works!
  9. | |
  10. | |
  11. The net is down! |
  12.  
  13. Here are the two options "net work" and "network is down" on to each other part of Decision diagram.
  14. 2. Implement the overall decision tree into a C # program that runs in the console and write the addresses to ping, and prompts the user to answer yes or no for whether it went well.
  15. The program should start by writing a short description of what it does and then it also also print who made it so that the CIO knows who to thank when it is used.
  16. Return the entire Decision diagram as part of the documentation, along with a brief description of what choices you made in connection with the implementation. For example, with a review of a sample of the program alongside a selection of Decision diagram.
  17. Turn in your application along with documentation - just send Program.cs file, you must not copy the entire program code into the documentation.
Advertisement
Add Comment
Please, Sign In to add comment