Give the values of the List attributes after each of the following operations.
```
List
ex.add("Pooh");
ex.add(1, "Tigger");
ex.add(1, "Piglet");
ex.add(0, "Owl");
List
exView.clear();
```
```
List
size = 0, head = tail = null
ex.add("Pooh");
size = 1, head = tail =
ex.add(1, "Tigger");
size = 2, head = “Pooh” tail = “Tigger”
ex.add(1, "Piglet");
size = 3, head = “Pooh” tail = “Tigger”
ex.add(0, "Owl");
size = 4, head = “Owl” tail = “Tigger”
List
size = 4, head = “Owl” tail = “Tigger”
the sublist encompases “Pooh”, “Piglet” and “Tigger”
exView.clear();
size = 1, head = tail = “Owl”
```
Computer Science & Information Technology