Concept:Use modular arithmetic: find remainder when 1729+1929 is divided by 18.Explanation:Step 1: Reduce each base modulo 18.17≡−1(mod18) because 18−1=17.19≡1(mod18) because 19=18+1.Step 2: Raise to power 29.1729≡(−1)29=−1(mod18) (since 29 is odd).1929≡129=1(mod18).Step 3: Add the two residues.(−1)+1=0(mod18).Thus, the remainder is 0.Answer:0 (Option D).