Which of the following evaluates to a list of all the perfect squares in increasing order from 11² to 111² inclusive?
1) range(11**2, 111**2 + 1)
2) [x**2 for x in range(11, 112)]
3) [x**2 for x in range(11, 112)]
4) [x**2 for x in range(11**2, 111**2 + 1)]