A ____ relationship occurs when each record in the first table matches many records in the second table, and each record in the second table matches many records in the first table.

A. one-to-one
B. one-to-many
C. many-to-one
D. many-to-many

Answer: D

Computer Science & Information Technology

You might also like to view...

When text is aligned unevenly on the right side, it is considered to be ________

A) right-aligned B) center-aligned C) justified D) left-aligned

Computer Science & Information Technology

Given the following method

static void nPrint(String message, int n) { while (n > 0) { System.out.print(message); n--; } } What is the output of the call nPrint('a', 4)? a. aaaaa b. aaaa c. aaa d. invalid call

Computer Science & Information Technology