Multiple choice technology programming languages

Properties that besides retrieving and writing the value of the field, also it can trigger an event related to the field?

  1. True

  2. False

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

Properties can indeed trigger events beyond simple read/write operations. For instance, in C# implementing INotifyPropertyChanged, a property setter can raise the PropertyChanged event to notify UI elements or other components of data changes, enabling reactive programming patterns.