True or False: Create properties for lower-level classes before higher-level classes.
B
Correct answer
Explanation
The statement is false - you should create properties for higher-level classes before lower-level classes in Pega's class hierarchy. This top-down approach ensures that inheritance works properly, as lower-level classes (subclasses) inherit properties and behaviors from their higher-level parent classes. Creating parent class properties first provides the foundation for child classes to extend.