Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.Database Programming with PL/SQL7-1: Handling ExceptionsPractice ActivitiesVocabularyIdentify the vocabulary word for each definition below:AN EXCEPTION HANDLERCode that defines the recovery actions to be performed when execution-time errors occur.AN EXCEPTIONOccurs when an error is discovered during the execution of a program that disrupts the normal operation of the program.Try It / Solve It1.What happens when Oracle encounters a runtime problem while executing a PL/SQL block?Se produce una excepción cuando se descubre un error durante la ejecución de un programa que interrumpe el funcionamiento normal del programa. El funcionamiento normal del programa.2.What do you need to add to your PL/SQL block to address these problems?Cuando el código no funciona como se esperaba, PL / SQL genera una excepción. Cuando se produce una excepción, el resto de las ejecuciones dicen que se ha "planteado" una excepción. Al escribir código, los programadores deben anticipar los tipos de errores que pueden ocurrir durante la ejecución de ese código. Deben incluir controladores de excepciones en su código para abordar la ejecución de ese código. En cierto sentido, los