What is the effect of `const int x = 5; x = 10;`?
Q1. What is the effect of `const int x = 5; x = 10;`?
Answer: Compilation error
Explanation: Assigning to a const variable results in a compilation error. NET computer science MCQs often test this core concept.