Which command is used to delete files from the user system that have not been accessed or modified in over a year, prompting the user for confirmation before removal?
Explanation
Option A uses the 'find' command with '-mtime +365' to locate files modified more than 365 days ago, piping the results to 'rm' for deletion. However, this command lacks a confirmation prompt. Other options either misuse commands or have syntax errors.