Multiple choice technology operating systems How can the time stamps of a file be preserved while copying a file? cp -i cp -r cp -p cp -R Reveal answer Fill a bubble to check yourself C Correct answer Explanation The cp -p command preserves file attributes including timestamps (atime and mtime), ownership, and mode. Regular cp copies content only. cp -r/-R are for recursive directory copies, and cp -i prompts before overwriting.