Problem Statement
Which command uses the modern syntax to create and switch to a branch named `feature/api`?
Explanation
`git switch -c <name>` is the newer, intent-specific command. The classic equivalent is `git checkout -b <name>`.
Practice Sets
This question appears in the following practice sets:
