Posts

Showing posts from April, 2019

Programming applications and frameworks

Image
1. What are the main elements of client-side application components of distributed systems?  Views – what users see (mainly GUIs)  Controllers – contain event handers for the Views  Client-model – Business logic and data        2. Discuss the Views development technologies for the browser-based client-components of web-based applications  3. Discuss the Controller development technologies for the browser-based client-components of web-based applications  Model–View–Controller (usually known as MVC) is an architectural pattern commonly used for developing user interfaces that divides an application into three interconnected parts. This is done to separate internal representations of information from the ways information is presented to and accepted from the user.[1][2] The MVC design pattern decouples these major components allowing for efficient code reuse and parallel development. Traditionally used for desktop graphical user in...