41.0k views
1 vote
In most cases, it is possible to prevent an exception from terminating a program by using the try and except statements. Select one: True False

User Jdgilday
by
3.8k points

1 Answer

4 votes

Answer:

True

Step-by-step explanation:

Try and except statements (pseudo code) or try and catch (java, c++, etc)

is for error handing. The try and except "handles errors" If encountered an error, the try and except will try to "handle" the error and let the program continue running.

User Azuu
by
4.1k points