A __________ is the column of data in a database that is used as the basis for arranging data.

A. primary key
B. sort key
C. data type
D. key value


Answer: B

Computer Science & Information Technology

You might also like to view...

DTD is an acronym for ________.

a) Document Type Dictionary b) Data Translator Definition c) Document Type Definition d) Document Translator Definition

Computer Science & Information Technology

In the following code, what is the output for list1?

``` public class Test { public static void main(String[] args) { int[] list1 = {1, 2, 3}; int[] list2 = {1, 2, 3}; list2 = list1; list1[0] = 0; list1[1] = 1; list2[2] = 2; for (int i = 0; i < list1.length; i++) System.out.print(list1[i] + " "); } }``` a. 1 2 3 b. 1 1 1 c. 0 1 2 d. 0 1 3

Computer Science & Information Technology

For every enum, the compiler generates a static method called _____________ that returns an array of the enum’s constants in the order in which they were declared.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

A(n) ____________________-party cookie is a cookie that was not created by the Web site that attempts to access the cookie.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology