Concept Flow - StringBuilder for performance
Create StringBuilder
Append strings one by one
StringBuilder holds combined string
Call toString() to get final string
Use final string
This flow shows how StringBuilder is created, strings are appended efficiently, and the final combined string is obtained.