A full binary tree of height n has _________________ leaves.

a) 2 n
b) 3n
c) 2n
d) 2(n+1)
e) 3(n+1)


a) 2 n

Computer Science & Information Technology

You might also like to view...

Given the following code fragment, and an input value of 5, what is the output?

int x; if( x< 3) { cout << "small\n"; } else { if( x < 4) { cout << "medium\n"; } else { if( x < 6) { cout << "large\n"; } else { cout << "giant\n"; } } } a. small b. medium c. large d. giant

Computer Science & Information Technology

__________ is the amount of data or data packets that can be transferred successfully over a communicational channel or a network node per unit of time or one time slot.

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

Computer Science & Information Technology

A(n) ____ object is a temporary cache storage for data retrieved from a data source.

A. Data Source B. Cache C. Database D. DataSet

Computer Science & Information Technology

No protocols operate at the physical layer of the OSI model

Indicate whether the statement is true or false.

Computer Science & Information Technology