Google News
logo
PL/SQL - Quiz(MCQ)
Which of the following is the correct syntax for creating a VARRAY named grades, which can hold 100 integers, in a PL/SQL block?
A)
TYPE grades VARRAY(100) OF INTEGER;
B)
TYPE grades IS VARRAY(100) OF INTEGER;
C)
TYPE grades IS VARRAY(100) OF INTEGERS;
D)
VARRAY grades IS VARRAY(100) OF INTEGER;

Correct Answer :   TYPE grades IS VARRAY(100) OF INTEGER;

Advertisement