Which Of The Following Is The Correct Basic Syntax For Creating #538
Which of the following is the correct basic syntax for creating a VARRAY type within a PL/SQL block?
This multiple choice question (MCQ) is related to the book/course
gs gs115 Structured Query Language.
It can also be found in
gs gs115 PL/SQL Loops, Strings and Arrays - PL/SQL Arrays - Quiz No.1.
Which of the following is the correct basic syntax for creating a VARRAY type within a PL/SQL block?
TYPE varray_name IS VARRAY(n) <element_type>
TYPE varray_name IS VARRAY(n) of <element_type>
TYPE varray_name VARRAY(n) of <element_type>
varray_name IS VARRAY(n) of <element_type>