State the main features of a tree

It is a dynamic hierarchical data structure, it has a node at the top of the tree called root ode ad each node can have children nodes and the lines joining the nodes are called branches. A node that has a child node is called a parent node and a node without a child node is called leaf

ZL

Related Computing A Level answers

All answers ▸

Describe the difference between TCP and UDP.


Explain indexed addressing including the benefits when traversing certain data structures (4 Marks)


The numbers 6B and 12 are displayed in hexadecimal form. Convert them into binary form and perform binary addition to find the sum. Convert your answer back into hexadecimal. Show your workings.


Given an ordered array of integers "V" and a integer "Sum", write a function that would return "true" if it finds two numbers in V that add up to Sum, and "false" otherwise.