Multiple choice technology programming languages

We can declare a field and a property with the same name as they both get stored in differnt places memory?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Fields and properties cannot share the same name in the same scope. They would conflict - the property would typically wrap the field with a different name (e.g., private field _name, public property Name).