Which of the following commands changes all occurrences of the word “bob” in file data to “Bob” and prints the result to standard output?
sed‘/bob/Bob’ data
sed‘s/bob/Bob/g’ data
sed‘s/bob/Bob/’ data
sed‘/bob/Bob/’ data
sed‘s/bob,Bob/’ data
Submit