Make a box-and-whisker plot of the data.

275, 257, 301, 218, 265, 242, 201

To create a box-and-whisker plot of the data, we first need to order the numbers from smallest to largest:

201, 218, 242, 257, 265, 275, 301

Next, we can find the median of the data set, which is the middle value when the data is in numerical order. In this case, the median is 257.

Now we can find the lower and upper quartiles, which divide the data set into four equal parts. The lower quartile (Q1) is the median of the lower half of the data set, and the upper quartile (Q3) is the median of the upper half of the data set.

Q1 = 218
Q3 = 275

We can also find the minimum and maximum values in the data set, which are 201 and 301, respectively.

Using these values, we can create a box-and-whisker plot:

Min: 201
Q1: 218
Median: 257
Q3: 275
Max: 301

```
|-------|------|----------|------|-------|
201 218 242 257 275 301
```