You should avoid deleting the unknown files to store your personal files and folders because if you delete that files it may be critical position with computer.
C. database administrators are responsible for organizing a company's data making sure all the data is accurate' available' and secure
It stands for Chief Risk Officer
Answer:
true
Explanation:
The command:
find -empty -type f -exec rm { } \;
carries out the following steps.
1) Finds all the empty files in the current directory and its subdirectories.
2) For each of the identified files, it executes the command specified as the parameter to exec option,namely, rm <filename>.
So effectively it removes all empty files in the directory tree starting at the current directory.