Which of the following is not a term for an element in a binary tree.

a) son
b) sibling
c) ancestor
d) parent


a) son

Computer Science & Information Technology

You might also like to view...

A(n) ____________________ audit should look for accounts assigned to employees who have left the company or user group.

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

Computer Science & Information Technology

Given the following four patterns,


Which of the pattern is produced by the following code?
```
for (int i = 1; i <= 6; i++) {
for (int j = 6; j >= 1; j--)
System.out.print(j <= i ? j + " " : " " + " ");
System.out.println();
}
```
a. Pattern A
b. Pattern B
c. Pattern C
d. Pattern D

Computer Science & Information Technology

A(n) ____ is a basic artistic element that places an outline on an object or on type.

A. stroke B. edge C. round-off D. trace

Computer Science & Information Technology

Text files use a tab or space as a delimiter. _________________________

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

Computer Science & Information Technology