1/22
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
Interactive System Development Framework
Which pertains to an established modular approach for interactive program development—where the core computation and interface parts are developed in a modularized method and are combined flexibly?
UI toolkit
Interactive System Development Framework is often based on the […], which provides the abstraction for the interface part.
MVC framework
This is an example of interactive system development framework.
MVC Architecture
The MVC framework is also known as?
MVC framework
What is a well-known three-layer framework used in developing and implementing user interfaces, especially Web applications, on computers?
three
MVC framework divides a given software application into […] interconnected parts to separate internal representations of data and information from the ways that information is presented to or accepted from the user.
Smalltalk
Designers of which programming language initially proposed MVC approach?
computational architecture
methodology
Smalltalk designers who initially proposed the MVC, approached the framework as […] for interactive programs, rather than a […].
Smalltalk
What is one of the first object-oriented and modular languages in the programming history?
Model : Data and Logic
View : Interface
Controller : User Input
MVC framework components:
Model : […]
View : […]
Controller : […]
Model
Which specifies the logical structure of data and the associated high-level classes in a software application?
Model
What is a domain-specific representation of the data that describes the processes in an application?
domain
When a model changes its state, the […] notifies its associated views to refresh.
Model
Example: In an interactive banking application, the […] involves the part of the program that maintains the balance, computes for the interest, makes wire transfers, etc. [It] does not know how the information will be presented to the user and how the transactions are made.
View
What component involves all the user interface (UI) logic in a software application, which also presents the application’s user interface as an output?
View
What renders the model into a form that is suitable for user interaction?
Multiple views
[…] can also exist for a single model but for different purposes.
widgets
In modern graphical user interface (GUI), the implementation of views is commonly through […].
views
Example: In an interactive banking application, […] might be windows and widgets that display the list of all possible transactions and the balance of a given account. Moreover, there could be different [it] implementations for different display platforms (e.g., 17-in. monitor and 10-in. LCD) or user groups (e.g., young users and people with special needs). Note that the output display does not necessarily have to be visual.
Controller
What serves as an interface between the model and the view components?
Controller
Which processes all the business logic and incoming requests and input, manipulates data using the model component, and interacts with the views to render the final output of a software application?
view and controller
In many application architecture and framework, the […] and […] are already merged into one module or object because of its close connection.
bank application
An example of the MVC framework is the implementation of a simple object-oriented […].