

InterviewSolution
Saved Bookmarks
1. |
Which of the following can be used to create a symbolic link?(a) os.symlink()(b) os.symb_link()(c) os.symblin()(d) os.ln() |
Answer» Correct answer is (a) os.symlink() For explanation: It is the function that allows you to create a symbolic link. |
|