What would be the current working directory at the end of the following command sequence?
$ pwd
/home/user1/proj
$ cd src
$ cd generic
$ cd .
$ pwd
$ pwd
/home/user1/proj
$ cd src
$ cd generic
$ cd .
$ pwdA. /home/user1/proj
B. /home/user1/proj/src
C. /home/user1
D. /home/user1/proj/src/generic
Answer: Option D

Join The Discussion