Answer the following statements true (T) or false (F)1) 2) 3) 4)

1) A column with UNIQUE constraint may not contain a NULL value.
2) The NOT NULL constraint is defined at table level only.
3) A CHECK constraint cannot be written to check for NULL values.
4) Value 9999.99 is the largest possible value for a NUMBER(6,2) column.


1) F
2) F
3) F
4) T

Computer Science & Information Technology

You might also like to view...

In Java, after an exception is handled, control resumes . This is known as the model of exception handling.

a. after the last catch block (or the finally block, if there is one), termination b. after the last catch block (or the finally block, if there is one), resumption c. just after the throw point, termination d. just after the throw point, resumption

Computer Science & Information Technology

The function F provides the element of __________ in a Feistel cipher. ?

A) ?clarification B) ?alignment ? C) ?confusion D) ?stability

Computer Science & Information Technology

There is no HTML attribute to change the ____ style, but many browsers allow you to change the color by adding the bordercolor attribute to the table element.

A. border B. frame C. background D. cell

Computer Science & Information Technology

Identify the compiler errors and state what is wrong with the code.

``` #include using namespace std; class Photo { private: string subject; double amount; //of light in lumens public: Photo(); Void SetLight(double x){amount = x;} } int main() { Photo OneOfMe; OneOfMe.subject = “Meg the cute girl.”; OneOfMe.SetLight(100.0); ```

Computer Science & Information Technology