You create an application for employees to submit timesheets. Employees enter work, vacation, and sick time for a particular week. On the entry form, employees see a summary of the total hours entered. After the employee submits the timesheet, the application displays remaining vacation and sick time for the employee. To configure the form where users enter hours, select the best configuration option to calculate the total hours for the week.
A. Use a data transform. When the user enters the form, the data transform determines the sum of the work, vacation, and sick tune properties.
B. Use declarative processing. When the value of any work, vacation, or sick time changes, the total hours change.
C. Use procedural processing. When the value of any work, vacation, or sick time changes and the user submits the form, the total hours change.
D. Use a When route. When the value of any work, vacation, or sick time changes, the total hours change.
The answer for this in many sites says C but i think it should be B as whenever the entered hours changes, the total hours changes(forward chaining). Can anyone please confirm the answer.