Which query will list the object IDs and names of all documents (current version only) in a
repository that a user has permission to access?

A.
select r_object_id, object_name from dm_document
B.
select r_object_id and object_name from dm_document
C.
select r_object_id, object_name from dm_document (all)
D.
select r_object_id, object_name from dm_document where user_permit = ‘browse’
Explanation: