Multiple choice technology databases Which of the following are different locks in SQL SERVER? Intent Shared Exclusive Delete Reveal answer Fill a bubble to check yourself A,B,C Correct answer Explanation SQL Server uses Intent locks (IS, IX), Shared locks (S), and Exclusive locks (X) as fundamental locking mechanisms. These prevent concurrent access conflicts. 'Delete' is an operation that acquires locks, not a lock type itself.