Problem Statement
Which command both creates and switches to a new branch named `feature/ui`?
Explanation
Modern Git: `git switch -c <name>` creates and checks out. Classic equivalent: `git checkout -b <name>`.
Practice Sets
This question appears in the following practice sets:
