Which of the following find commands will print out a list of files owned by root and with the SUID bit set in /usr?
A.
find /usr -suid -perm +4000
B.
find /usr -ls \*s\* -u root
C.
find /usr -uid 0 -perm +4000
D.
find -user root +mode +s /usr
E.
find -type suid -username root -d /usr