Conclusion
1) If you change between 1 and 20 from the previous program to between 1 and 6000, how many guesses will you need to guarantee that you have the right answer? Explain.
You will need to have exactly 6000 guesses to assure that you undoubtably have the correct answer,
2) Describe the difference between a while loop and a for loop.
For loops repeats every time a specific event occurs, however while loops only repeat while a certian condition is true. The two can be used interchangibly based on your personal coding preferance.