Answer:
A. grep -E "(John|Bob)" salesemployees.csv
Explanation:
The grep command is used to search text. It searches the given file for lines containing a match to the given strings or words.
How to use Grep Command:
grep 'letter' filename – Search any line that contains word 'letter' in filename on Linux
grep -i 'Alphabet' file1 – A case-insensitive search for the word ‘Alphabet’ in Linux and Unix
grep -R 'root' . – Search all files in the current directory and in all of its subdirectories in Linux for the word ‘root’
Explanation: The CPU is the main control chip which calculates what has to be done in order for your computer to function.
(Very interesting question you had. Hope this answer helps)
The programmer solves the problems of a user by expressing an algorithm in a programming language to make a program that can run on a computer.