Answer:
False
Step-by-step explanation:
The command find . -type f -mtime +10 will search for all files in the current directory and its subdirectories which have not been modified in more than 10 days.
-type argument specifies the type of entity to be searched which in this case corresponds to f (or file).
-mtime argument specifies the last modified time check for the files in terms of number of days and not number of minutes.