CREATE TYPE table_goes_here AS object ( test_name VARCHAR2, data1 data_type1 data2 data_type2 ); CREATE TYPE table_arr AS VARRAY(number) OF table; CREATE TABLE student ( student_no NUMBER, // create 3 more // column types for exercise );