Multiple choice technology operating systems sed -n option prints the output does not print the output changes the output None of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation The sed -n option suppresses automatic printing of pattern space. By default, sed prints each line to stdout. With -n, nothing is printed unless explicitly requested with the p command, enabling selective output control.