We can write triggers for Truncate.
B
Correct answer
Explanation
TRUNCATE TABLE is a minimally logged operation that cannot fire triggers. Unlike DELETE statements which activate row-level triggers, TRUNCATE deallocates data pages without logging individual row deletions, bypassing trigger execution entirely. If you need trigger behavior, use DELETE instead. TRUNCATE is faster but less flexible.