Which of the following statements about trees is false?

A. Trees have their origins in the work of mathematician Gustav Kirchhoff.
B. Tree applications range from artificial intelligence systems to efficient search algorithms for large, dynamic lists.
C. The entry node in a tree is known as a leaf.
D. Binary trees are implemented with two pointers, one to the left subtree and one to the right subtree.
E. A tree is a hierarchical data structure.


Answer: C

Computer Science & Information Technology

You might also like to view...

To rename an icon, right-click the icon and select Rename.

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

Computer Science & Information Technology

A ____ contains fields of information about a single entity in the database.

A. character B. database C. field D. record

Computer Science & Information Technology

What is wrong with the above code?

Code for the next three questions – this code is supposed to fill and array with random numbers 1. ``` int numList[1000]; ``` 2. ``` srand(123); ``` 3. ``` for(int i = 0; i<1000; i++) ``` 4. ``` { numList[i] = rand()%1000 +5; cout << numList[i]; } ``` A. Line 2 – should be seed(123); B. Line 5 – rand() should have a number in the parentheses for random number generation C. Line 3 – should be i=1000; D. None the above.

Computer Science & Information Technology

Assuming a hire date of February 15, 2017, which of the following date part functions would return the number of days since the beginning of the current year?

A) DatePart("yyyy",[HireDate]) B) DatePart("y",[HireDate]) C) DatePart ("q",{HireDate]) D) DarePart("w",[HireDate])

Computer Science & Information Technology