Multiple choice technology web technology To find out what package /usr/bin/TcsMgrToolkit belongs to, you'd use rpm –qf TcsMgrToolkit rpm –qf which TcsMgrToolkit rpm –qf /usr/bin/TcsMgrToolkit rpm –qf \/usr\/bin\/TcsMgrToolkit Reveal answer Fill a bubble to check yourself C Correct answer Explanation rpm -qf requires the full absolute path to the file. The which command returns the path but needs command substitution, and the escaped path in D won't work. Option C has the correct full path.