Question: What Bash script will correctly create these files?

  1. `touch file{1+10}.txt`
  2. `touch file{1-10}.txt`
  3. `touch file{1..10}.txt`
  4. `touch file(1..10).txt`

Answer: The correct answer of the above question is Option C:`touch file{1..10}.txt`