Binary Trees A2 CS

Binary Trees A2 CS

11th - 12th Grade

23 Qs

quiz-placeholder

Similar activities

SLR14 - Trees TAR

SLR14 - Trees TAR

11th - 12th Grade

20 Qs

SIP C

SIP C

12th Grade

20 Qs

JavaScript Certification Quiz

JavaScript Certification Quiz

12th Grade

25 Qs

Quiz topologi star dan ring

Quiz topologi star dan ring

11th Grade

20 Qs

XII Computer Datastructures 2023

XII Computer Datastructures 2023

9th - 12th Grade

20 Qs

Data Structures

Data Structures

9th - 12th Grade

21 Qs

Data Structures & Types

Data Structures & Types

11th Grade

20 Qs

Data Structures 2

Data Structures 2

12th Grade

21 Qs

Binary Trees A2 CS

Binary Trees A2 CS

Assessment

Quiz

Computers

11th - 12th Grade

Hard

Created by

Ryan Coughlin

Used 5+ times

FREE Resource

23 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When adding a new node to a tree, which is not a pointer that you need

FreePtr

NewNodePtr

CurrentPtr

PreviousPtr

NextPtr

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When initialising the tree, what should the LeftPtr field have as a value?

The next index in the list

NullPtr

The RootPtr

The size of the array

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#When adding a new node to the tree:


IF TurnedLeft = TRUE

THEN

Tree [________] .Left Pointer <- NewNodePtr

FreePtr

CurrentPtr

PreviousPtr

NullPtr

RootPtr

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#When adding a new node to the tree:


Tree[_______] .Data <- Newitem

FreePtr

CurrentPtr

PreviousPtr

NewNodePtr

RootPtr

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#When adding a new node to the tree:


WHILE ThisNodePtr <> ________// while not a leaf node

FreePtr

CurrentPtr

PreviousPtr

NullPtr

RootPtr

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#When adding a new node to the tree:


IF Tree[ThisNodePtr] .Data > Newitem THEN

TurnedLeft <- TRUE

ThisNodePtr <- Tree [________].LeftPointer

FreePtr

ThisNodePtr

PreviousPtr

NullPtr

RootPtr

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#When adding a new node to the tree:


________ <- ThisNodePtr // remember this node

FreePtr

ThisNodePtr

PreviousPtr

NullPtr

RootPtr

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?

Discover more resources for Computers