Options:
- The user interface objects deal with receiving and handling events initiated by the user
- A controller object receives a request and assigns it to the proper object
- The user interface objects deal with presenting information to the user
- The user interface that the user sees is separated from the business logic
- The work is separated into different layers depending on what it is responsible for
-
The user interface objects deliver requests directly to the proper object
1 Answers
Best Answer
- The user interface objects deal with receiving and handling events initiated by the user
- A controller object receives a request and assigns it to the proper object
- The user interface objects deal with presenting information to the user
- The user interface that the user sees is separated from the business logic
- The work is separated into different layers depending on what it is responsible for