Multiple choice technology operating systems

will the command cd* work

  1. Yes under certain circumstances.

  2. No.

  3. I Dont Know

  4. cd command will not work with * switch

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The command 'cd*' with a wildcard will work only if the shell globbing pattern resolves to 'cd' (which happens if there's a file starting with 'cd' in the current directory, or if the glob doesn't match and the shell passes the literal string). However, this is an extremely contrived edge case that doesn't reflect normal usage. The question is poorly designed.