What type of data goes into your program? Could the user get this data incorrect? For instance, what if they put letters instead of a number? What if they used negative numbers? It’s time to start building exception code for your program. What do you need to anticipate potential crashes in your program? You should now be writing the code for your program and adding in error handling. It will help to plan out the exception handling. Consider that the program should not crash if the following occurs: What protects bad user inputs? (numbers instead of letters and vice versa) What if nothing is entered? How is that handled? Can the user cause your program to divide by zero? What if the user inputs lower case instead of uppercase and vice versa? (for instance, "y” instead of “Y” for yes response) With the considerations above clarified, use any program that has UML capability to make your flowcharts in UML.
I have an idea and would appreciate some help. Here is my idea:
What is my
What I need help with:
What type of data goes into your program? Could the user get this data incorrect? For instance, what if they put letters instead of a number? What if they used negative numbers?
It’s time to start building exception code for your program. What do you need to anticipate potential crashes in your program?
- You should now be writing the code for your program and adding in error handling. It will help to plan out the exception handling.
- Consider that the program should not crash if the following occurs:
- What protects bad user inputs? (numbers instead of letters and vice versa)
- What if nothing is entered? How is that handled?
- Can the user cause your program to divide by zero?
- What if the user inputs lower case instead of uppercase and vice versa? (for instance, "y” instead of “Y” for yes response)
- With the considerations above clarified, use any program that has UML capability to make your flowcharts in UML.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps
Thank youn for the insight, I am excited to start working on my own personal project