The AutoNumber data type is best used for the primary key

Indicate whether the statement is true or false


TRUE

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragment?

int f1(int base, int limit) { if(base > limit) return -1; else if(base == limit) return 1; else return base * f1(base+2, limit); } int main() { cout << f1(2,4)<

Computer Science & Information Technology

To speed up searching and sorting, you use the ________ property to create a second, more efficient table that is quickly searched or sorted

A) Search B) Find C) Sort D) Indexed

Computer Science & Information Technology

The statement above revokes a privilege from a user

a. true b. false

Computer Science & Information Technology

What is the value of the following expression: 2*6+15/3/1+4?

a) 21 b) 13 c) 14 d) 18

Computer Science & Information Technology