Multiple choice java

which symbol denotes current working directory?

  1. . (dot)

  2. !

  3. %

  4. *

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

In Unix/Linux file systems, the dot (.) symbol represents the current working directory. This is used in relative paths and commands. For example, './script.sh' runs a script in the current directory. The double dot (..) represents the parent directory. The other symbols shown (!, %, *) are shell metacharacters with different meanings - ! for history, % for job identifiers, * as a wildcard.