The last node in a linked list points to

a. a null pointer
b. the previous node
c. the first node in the list
d. nothing; the last node does not contain a pointer
e. None of these

a. a null pointer

Computer Science & Information Technology

You might also like to view...

To help reduce the size of your PowerPoint presentation, you can ________ a video file

A) compress B) expand C) hide D) crop

Computer Science & Information Technology

List output/message from the following queries/statements. (Use tables created in the Chapter 4 Lab Activity)

1. SELECT First || ‘ ‘ || Last “Name”, BirthDate FROM student; 2. SELECT DISTINCT (MajorId) FROM student; 3. SELECT * FROM location ORDER BY Building, Capacity DESC; 4. SELECT Lname, Fname, (Salary / 12) MONTHLYSALARY FROM employee ORDER BY MONTHLYSALARY; 5. DELETE FROM faculty WHERE DeptId=2;

Computer Science & Information Technology