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 -uid 0 -perm +4000
B.
find -user root +mode +s /usr
C.
find -type suid -username root -d /usr
D.
find /usr -ls \\*s\\* -u root
E.
find /usr -suid -perm +4000
find /usr -suid -perm -4000
see https://docs.oracle.com/cd/E19683-01/806-4078/6jd6cjs37/index.html
1
2
find /usr -user root -perm -4000
find /usr -user root -perm -u+s
are also other alternatives which are good to bear in mind for the exam..
0
0