Multiple choice technology programming languages "What does the read command do while it waits for input? " Tests for command-line arguments Shifts arguments to the left Exits the program Creates a pause in the program Reveal answer Fill a bubble to check yourself D Correct answer Explanation The read command pauses program execution while waiting for user input from stdin. It does not test arguments, shift them, or exit the program. The pause continues until the user presses Enter.