Fruit Salad (Part 1)#
## What are the elements in ``listA`` after the following code is executed?
```python
listA = ["apple", "banana", "orange"]
listB = listA
listC = ["apple", "banana", "orange"]
listA[0] = "pear"
listB[1] = "pineaple"
listC[2] = "grape"
```
1. [ ] ``listA = ["apple", "banana", "orange"]``
2. [ ] ``listA = ["pear", "pineapple", "grape"]``
3. [x] ``listA = ["pear", "pineapple", "orange"]``
4. [ ] ``listA = ["pear", "banana", "orange"]``