67.1k views
0 votes
Consider a software system to implement a mobile application and a companion back-end system. This application would implement Canvas on your phone. The back-end system could have other front-ends, such as a web-based application. Note that in this system, due to FERPA regulations, all software components must be developed and deployed in-house and information must not be transmitted between clients. For this system, what software architecture patterns would be a good possible fit? Mark all that apply. (Note: although almost any architecture pattern could be applied to almost any system, think of the pros and cons and select only those that make the most sense in the given context O Client-Server Onion Pattern Peer-to-Peer (P2P) Model-View-Controller (MVC) Layer Pattern □ Service Oriented Architecture Broker Pattern Map-Reduce

User Shiyas
by
4.8k points

1 Answer

3 votes

Answer:

Model-View-Controller(MVC); Peer-To-Peer; Map-Reduce; Onion Pattern.

Step-by-step explanation:

Model-View-Controller is a typical software design pattern that can be used for the development of user interfaces. Peer-To-Peer is a computing architecture suitable for the partitioning of workloads among peers. Map-Reduce is a typical programming tool that can be used for processing different sets of data. The onion pattern is widely used to resolve the issues that come from n-tier.

User Arnobpl
by
5.2k points