Which two tasks should be created as functions instead of as procedures?

Which two tasks should be created as functions instead of as procedures? (Choose two.)

Which two tasks should be created as functions instead of as procedures? (Choose two.)

A.
reference host or bind variables in a PL7SQL block of code

B.
tasks that compute and return multiple values to the calling environment

C.
tasks that compute a value that must be returned to the calling environment

D.
tasks performed in SQL that increase data independence by processing complex data analysis
within the Oracle server, rather than by retrieving the data into an application

Explanation:



Leave a Reply 10

Your email address will not be published. Required fields are marked *


vishesh bansal

vishesh bansal

c,d

A. Host variable can be referenced in PL/SQL block with function(:hv:=function) and with procedure(procedure(:hv)) so this is no answer.
B. This is for procedure.
C. This is for function.
D. This is advantage of user-defined functions in SQL statements.

samkelo siyabonga ngubo

samkelo siyabonga ngubo

A,C

PIERO

PIERO

i think that vishes bansal WROTE right

C,D

User

User

answer: C and D

User

User

A. Host variable can be referenced in PL/SQL block with function(:hv:=function) and with procedure(procedure(:hv)) so this is no answer.
B. This is for procedure.
C. This is for function.
D. This is advantage of user-defined functions in SQL statements.