Question: Question 2 4 ( 1 point ) Consider a linked list implemented using ONLY this code: ` ` ` class linked _ list: def _

Question 24(1 point)
Consider a linked list implemented using ONLY this code:
```
class linked_list:
def __init__(self, data):
self.data = data
self.next = None
```
Assume that the following code is run:
```
ll = linked_list(0)
for i in range(800):
ll.next = linked_list(i)
ll = ll.next
```
Which of the following statements are true:
The size of list is 800 elements
print(II.data) will show 0
print(II.data) will show 800
None of the above
Question 2 4 ( 1 point ) Consider a linked list

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!