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

1) 2-3 tree, each element is in its own node.
2) The root node of a 2-3 tree is always a 2-node.
3) Inserting an element into a 2-3 tree may add more than one node to the tree.
4) The easiest element to remove from a 2-3 tree is an element that is in a 3-node that is a leaf node.
5) A 2-4 tree extends the concept of a 2-3 tree by allowing a node to have 1, 2, or 3 elements and 0, 2, 3, or 4 children.


1) F
2) F
3) T
4) T
5) T

Computer Science & Information Technology

You might also like to view...

Given the structure type and variable definitions

``` struct ShoeSize { char width; int number; }; struct ShoeType { char style; ShoeSize size; double price; }; ShoeType shoe1, shod2; ``` What type do these variables have? a) shoe1.style b) shoe2.size c) shoe1.size.width d) shoe2.price e) shoe1.size.number

Computer Science & Information Technology

Explain when you would use quotes and apostrophes for strings.

What will be an ideal response?

Computer Science & Information Technology

Draft a plan to perform Web traffic analysis for the ecommerce application developed for Marathon Vitamin Shops. (See Consulting Opportunities 1.1, 13.2, and 14.5 for more information about the organization, their products, and their goals.) Your plan should take the form of a written report to the owner of the chain, Bill Berry. Be sure to indicate what statistics you will monitor and why they are important for Marathon Vitamin Shops to know

What will be an ideal response?

Computer Science & Information Technology

Match the following terms to their meanings:

I. Min II. Max III. Avg IV. Sum V. Count A. Totals the values in a field B. Averages the values in a field C. Displays the largest value in a field D. Displays the smallest value in a field E. Displays the number of records based on a field

Computer Science & Information Technology