Which statements are true regarding the creation and storage of data in the above table structure?

Examine the structure proposed for the TRANSACTIONS table:


Which statements are true regarding the creation and storage of data in the above table structure? (Choose all that apply.)
A. The CUST_STATUS column would give an error.
B. The TRANS_VALIDITY column would give an error.
C. The CUST_STATUS column would store exactly one character.
D. The CUST_CREDIT_LIMIT column would not be able to store decimal values.
E. The TRANS_VALIDITY column would have a maximum size of one character.
F. The TRANS_DATE column would be able to store day, month, century, year, hour, minutes, seconds, and fractions of seconds.

Download Printable PDF. VALID exam to help you PASS.

One thought on “Which statements are true regarding the creation and storage of data in the above table structure?

  1. D is correct to.

    CREATE TABLE q55 (col1 NUMBER);

    INSERT INTO q55 VALUES (123.21);

    SELECT * FROM q55;

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.