OCP CBT Question 607

Please solve the following question.

You need to automate two distinct tasks: one involves executing a simple DML statement, and the other requires calling an existing stored procedure. You want to utilize Oracle Scheduler for both. Which two statements are true regarding the `JOB_TYPE` parameter for these scenarios?

Scenario 1: Simple DML tasksqlBEGIN DELETE FROM temp_log WHERE log_date < TRUNC(SYSDATE); END;## Scenario 2: Stored Procedure CallsqlPROCEDURE cleanup_old_data (p_retention_days IN NUMBER) ISBEGIN DELETE FROM archived_data WHERE archive_date < SYSDATE - p_retention_days;END;