Answer the following statements true (T) or false (F)

1. Each column in a table must have a name.
2. When you create a database table, you must specify a data type for each column.
3. The table row designated as the primary key must hold a unique value for each column.
4. The table column designated as the primary key must hold a unique value for each row.


1. TRUE
2. TRUE
3. FALSE
4. TRUE

Computer Science & Information Technology

You might also like to view...

Which type of webpages will automatically adjust the size of the content to display appropriately relative to the size of the screen of the device on which it is displayed??

A. ?automatic B. ?responsive C. ?adjustable D. relative

Computer Science & Information Technology

What is the generic layout to a simple list?

A. simple_list_item_1 B. simple_list_item_2 C. simple_list_item_checked D. simple_list_item_multiple_choice

Computer Science & Information Technology

What input can cause this loop to end?

``` Declare Number, ComputerNumber As Integer Do Write “Please enter a number: “ Input Number ComputerNumber = Number + 1 Write Number While Number <= ComputerNumber Write “The End”``` a. 12 b. 0 c. 1 d. Nothing would cause this loop to end; it is an infinite loop.

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. If you call setLineWidth to specify the GraphicsContext’s line thickness, all subsequent GraphicsContext method calls that draw lines or shape borders will use this setting. 2. PhongMaterial method setSpecularColor sets the color of a bright spot that makes a 3D shape appear shiny. PhongMaterial method setSpecularPower determines the in- tensity of that spot.

Computer Science & Information Technology