Correct Answer - Option :
Answer: Option 1 and Option 4
Explanation:
Option 1: Renaming of an existing file in foo.
This Option is correct as for the Renaming operation of a file in a directory the New name must not create conflict to any of the existing file names. Hence a full scan is required for successful completion.
Option 2: Opening of an existing file in foo.
This option is not correct as Opening the file does not require a full scan.
Option 3:Deletion of an existing file from foo.
This Option is not Correct. as Deletion of a file does not require a full scan.
Option 4: Creation of a new file in foo.
This Option is correct as While Creating a new file we need to check whether the newly created file name must not create conflict to any of the existing file names. Hence a full scan is required for successful completion.