<u>The most important job duty of a software developer is to develop a product/program that is easy to use and melts a customer’s need.</u>
<u></u>
Explanation:
Some other duties of a Software developer are
- Researching,designing and implementing new software program's and then managing them
- Testing and evaluating the developed software program's
- Identifying errors in the existing program's and modifying the same
- Writing effective codes
- employing various software tools
- Training new users
- Working closely with the other developers
Know the numbers and info
Answer:
You can have many catch blocks to handle different types of exceptions.
Explanation:
In programming, catch and try are blocks of codes that are written to handle errors. While the try block of code will allow for the definition of code blocks which are tested for errors, the catch block of code allows the programmer to define the block of code to be executed if an error occurs in the try block.... somewhat like the if....else statements. since there could be different error handling scenarios,one can have as many catch blocks for different error exceptions