1.

What does os.link() do?(a) create a symbolic link(b) create a hard link(c) create a soft link(d) none of the mentionedThis question was addressed to me in semester exam.My query is from Operating System topic in portion Mapping Functions and Modules of Python

Answer»

The correct answer is (B) CREATE a HARD link

The BEST I can explain: os.link(source, destination) will create a hard link from source to destination.



Discussion

No Comment Found

Related InterviewSolutions