A ________ is a datasheet that displays the records joined to the main record through a relationship

A) mini-datasheet B) secondary datasheet
C) subdatasheet D) subordinate datasheet


C

Computer Science & Information Technology

You might also like to view...

What is output of the following code:

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

Computer Science & Information Technology

A comment will always contain the name of the reviewer and the date it was inserted

Indicate whether the statement is true or false

Computer Science & Information Technology

Data ________ are used to show the exact value or the name of data points

A) axes B) labels C) tables D) legends

Computer Science & Information Technology

If an IF statement has four outcomes, it will require three logical tests

Indicate whether the statement is true or false

Computer Science & Information Technology