Objective: Create a VARRAY.
You will receive 10 points for this exercise. The exercise is auto-scored. When you have completed the exercise, click the Submit button to receive full credit.
Using the template below, do the following:
-- Step 1: Object type for one test score CREATE TYPE test_score_ot AS OBJECT ( test_name VARCHAR2(20), test_date DATE, test_score NUMBER(3) ); / -- Step 2: VARRAY type (up to five test scores) CREATE TYPE test_score_va AS VARRAY(5) OF test_score_ot; / -- Step 3: STUDENT table that stores the VARRAY column CREATE TABLE student ( student_no NUMBER PRIMARY KEY, student_name VARCHAR2(60) NOT NULL, student_address VARCHAR2(120), test_scores test_score_va );