Which two statements are true regarding constraints? (Choose two.)
A.
A constraint can be disabled even if the constraint column contains data
B.
A constraint is enforced only for the INSERT operation on a table
C.
A foreign key cannot contain NULL values
D.
All constraints can be defined at the column level as well as the table level
E.
A columns with the UNIQUE constraint can contain NULL values
A unique constraint prohibits multiple rows from having the same value in the same column or combination of columns but allows some values to be null.
http://docs.oracle.com/cd/B19306_01/server.102/b14200/clauses002.htm
A and E are correct
Correct Answer: A, E