KRHS Internet Lesson

Teacher Name:Mr Rung                          Date of Lesson: April/May

Course Name: C++                    Lesson Name: Chap 16.2a

Student Name

Password


Objective
To complete the workbook exercises.


Primary Focus
Answer the workbook questions below.

Site Links
Course Home Page

Additional Resources

Site Links


Question #1

The first step in implementing a linked list is declaring the structure that will serve as the nodes for the list.

True         False


Question #2

The last node in the list must always have a NULL value in the next pointer to signify the end of the list.

True         False


Question #3

The statement current-ptr = current-ptr->next; is a valid statement.

True         False


Question #4

The process of accessing every node in the list is called traveling the list.

True         False


Question #5

The remove keyword releases the memory used to be used by the linked list for other purposes.

True         False