194.

Shared locks are not compatible with exclusive locks. True/False?

Shared - Used for operations that do not change or update data (read-only operations), such as a SELECT statement.
Exclusive - Used for data-modification operations, such as INSERT, UPDATE, or DELETE. Ensures that multiple updates cannot be made to the same resource at the same time.