What is the output of `printf('%d', 10 % -3)`?
Q1. What is the output of `printf('%d', 10 % -3)`?
Answer: 1
Explanation: Modulus operation: 10 % -3 = 1. 1 is correct because it matches what the question requires. NET computer science MCQs often test this core concept.