READ Free Dumps For Oracle- 1z0-001
Question ID 1583 | Examine the structure of the STUDENT table: STUD_ID NOT NULL NUMBER(3) NAME NOT NULL VARCHAR2(25) ADDRESS VARCHAR2(50) |
Option A | A. INSERT INTO student VALUES (101,'Smith'); |
Option B | B. INSERT INTO student (stud_id, address, graduation) VALUES (101,'100 Main Street','17-JUN-99'); |
Option C | C. INSERT INTO student (stud_id, address, name, graduation) VALUES (101,'100 Main Street','Smith','17-JUN-99'); |
Option D | D. INSERT INTO student table |
Option E | E. INSERT INTO student |
Correct Answer | C |
Question ID 1584 | You need to store currency data and you know that the data will always have two digits to the right of the decimal point. However, the number of digits to the left of the decimal place will vary greatly. |
Option A | A. LONG |
Option B | B. LONG RAW |
Option C | C. NUMBER(p) |
Option D | D. NUMBER |
Correct Answer | D |