Which of the following commands sets the variable USERNAME to the value bob?
Which of the following commands sets the variable USERNAME to the value bob?
The command to set a variable in most shell environments (like Bash) is to use the syntax 'VARIABLE_NAME=value'. Therefore, to set the variable USERNAME to the value bob, you would use 'USERNAME=bob'.
E is the correct answer
Why isn't this B. Is it because of the double == signs?