Problem:
The task is to arrange the given list of transportation vehicles in
alphabetical order and write them in the provided boxes.
#### Given List of Vehicles:
1. bus
2. helicopter
3. scooter
4. bicycle
5. train
6. airplane
7. car
8. truck
9. motorcycle
10. ship
---
Solution:
To solve this problem, we need to sort the words alphabetically. Here's how we can do it step by step:
1.
Identify the first letter of each word:
- bus → B
- helicopter → H
- scooter → S
- bicycle → B
- train → T
- airplane → A
- car → C
- truck → T
- motorcycle → M
- ship → S
2.
Sort the words based on their first letters:
- Words starting with
A: airplane
- Words starting with
B: bus, bicycle
- Words starting with
C: car
- Words starting with
H: helicopter
- Words starting with
M: motorcycle
- Words starting with
S: scooter, ship
- Words starting with
T: train, truck
3.
Handle ties (same first letter):
- For words starting with the same letter, compare the second letter, and so on.
- Example: "bus" and "bicycle" both start with "B". Compare the second letters: "u" vs. "i". Since "i" comes before "u", "bicycle" comes before "bus".
4.
Final Alphabetical Order:
- airplane
- bicycle
- bus
- car
- helicopter
- motorcycle
- scooter
- ship
- train
- truck
---
Final Answer:
Write the following words in the boxes in alphabetical order:
1. airplane
2. bicycle
3. bus
4. car
5. helicopter
6. motorcycle
7. scooter
8. ship
9. train
10. truck
Boxed Answer:
\[
\boxed{
\begin{array}{l}
\text{airplane} \\
\text{bicycle} \\
\text{bus} \\
\text{car} \\
\text{helicopter} \\
\text{motorcycle} \\
\text{scooter} \\
\text{ship} \\
\text{train} \\
\text{truck}
\end{array}
}
\]
Parent Tip: Review the logic above to help your child master the concept of words in alphabetical order worksheet.