Let’s solve this step by step.
We are given a list of nouns and need to sort them into three categories:
Person,
Place, and
Thing. Then, within each category, we must put the words in
alphabetical order.
---
Step 1: Identify which noun goes where
Let’s go through each word:
-
PENCIL → Thing (you write with it)
-
TEACHER → Person (a job)
-
CLASSROOM → Place (where you learn)
-
NOTEBOOK → Thing (you write in it)
-
BOOK → Thing (you read it)
-
FIREMAN → Person (a job)
-
POLICE STATION → Place (where police work)
-
CELLPHONE → Thing (you use it to call/text)
-
HOUSE → Place (where people live)
-
STUDENT → Person (someone who learns)
-
TABLE → Thing (you put things on it)
-
LIBRARY → Place (where books are kept)
-
PARK → Place (outdoor area for fun)
-
AIRPLANE → Thing (flies in the sky)
-
BANK → Place (where you keep money) — *Note: “bank” can also mean river bank, but here it’s likely the financial place.*
-
DOCTOR → Person (a job)
-
FRIEND → Person (someone you know well)
-
SECRETARY → Person (a job)
Wait — let’s double-check “BANK”. In school worksheets like this, “BANK” is usually considered a
Place (like where you deposit money). So we’ll keep it under Place.
Now let’s group them:
---
Step 2: Group into categories
PERSON:
Teacher, Fireman, Student, Doctor, Friend, Secretary
PLACE:
Classroom, Police Station, House, Library, Park, Bank
THING:
Pencil, Notebook, Book, Cellphone, Table, Airplane
Wait — did we miss any? Let’s count total words from original list:
Original list has 18 words:
Row 1: PENCIL, TEACHER, CLASSROOM, NOTEBOOK → 4
Row 2: BOOK, FIREMAN, POLICE STATION → 3
Row 3: CELLPHONE, HOUSE, STUDENT, TABLE → 4
Row 4: LIBRARY, PARK, AIRPLANE, BANK → 4
Row 5: DOCTOR, FRIEND, SECRETARY → 3
Total = 4+3+4+4+3 = 18
✔
Our groups:
Person: Teacher, Fireman, Student, Doctor, Friend, Secretary → 6
Place: Classroom, Police Station, House, Library, Park, Bank → 6
Thing: Pencil, Notebook, Book, Cellphone, Table, Airplane → 6
Perfect — all accounted for.
---
Step 3: Sort each group alphabetically
#### PERSON (alphabetical order):
List: Teacher, Fireman, Student, Doctor, Friend, Secretary
Sort A-Z:
- Doctor
- Fireman
- Friend
- Secretary
- Student
- Teacher
✔ Check: D, F, F, S, S, T — yes, alphabetical.
#### PLACE (alphabetical order):
List: Classroom, Police Station, House, Library, Park, Bank
Sort A-Z:
- Bank
- Classroom
- House
- Library
- Park
- Police Station
✔ Check: B, C, H, L, P, P — “Park” comes before “Police Station” because “Pa” < “Po”
#### THING (alphabetical order):
List: Pencil, Notebook, Book, Cellphone, Table, Airplane
Sort A-Z:
- Airplane
- Book
- Cellphone
- Notebook
- Pencil
- Table
✔ Check: A, B, C, N, P, T — perfect.
---
Final Answer:
Now we fill the table as requested.
| PERSON | PLACE | THING |
|--------------|------------------|--------------|
| Doctor | Bank | Airplane |
| Fireman | Classroom | Book |
| Friend | House | Cellphone |
| Secretary | Library | Notebook |
| Student | Park | Pencil |
| Teacher | Police Station | Table |
This is the correct sorted order for each category.
Parent Tip: Review the logic above to help your child master the concept of parts of speech nouns worksheet.