Question No. 1
The Architecture Canvas is a ...
framework to support Architecture Conventions for Modules in Outsystems
framework to support application architecture design in Outsystems
framework to support Architecture Design Process in Outsystems
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 2
ISO/IEC 25010:2011 adds two more aspect to ISO/IEC 9126:1991. Which of the below is not part of it?
Compatibility : Compatibility was also added as a way to ensure that a piece of software can work together with other systems
Security : Security ensure software solutions can protect information and data
Integration : Integration to allow data exchange with other software
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 3
Which of the below is not a best practice for mobile security:authentication?
Store password in local storage
Encrypt (only) sensitive data
Authentication : Use google or facebook for online authentication or fingerprint or pin for offline authentication
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 4
There are 3 common scenarios for Sharing a Style Guide. Which of the below is not part of th scenario.
Intranet (Single Sign On): Own Menu, Common Login Flow. Menu is defined in the Custom Template, but Login is defined in the Custom Theme. Application reference the Custom Them which picks up the Login.
Enterprise Apps: Common Menu, Common Login Flow. Menu is defined in the Custom Theme, but Login is defined in the Custom Template.
Independent Apps : Own Menu, Own Login Flow. Login and Menu is defined in the Custom Template. Applications reference to its own Application Theme thus do not use the Login and Menu in the Custom Template.
Portal : Common Menu, Common Login Flow. Login and Menu is defined in the Custom Them Application Theme reference the Custom Theme thus have a shared menu and login flow.
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 5
What is Application Composition Process?
Answer is the above.
Process to package modules into apps
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 6
OAPI is different compared to API. What is inside an OAPI?
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 7
What does NOT happen due to a lack of architecture concerns?
Inflexible and slow-moving legacy systems : adapting legacy systems to business changes may be difficult. Changes in complex and inflexible systems can take a long time
Tech Debt : AI Mentor will raise architectural tech debt such as cyclic dependency and side to side dependency
Unmanageable dependencies : System not isolated from each other. Updating or replacing a system has a cascade/snowball effect on other systems
Poor service abstraction : Business concepts not correctly isolated, business rules tend to be spread over different systems and little to no code reuse
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 8
Which of the below matches the most to Library Module Pattern - Extension Pattern...
A. ... is a pattern with two modules, a connector module that can be used to encapsulate an external API with the input/output structures and a wrapper module to expose the normalized API to the consumers.
B. Same as ECS with local replica but API module is provided. So any changes to the external system can notify OS, which OS then gets update from the ERP system (subscription system)
C. ... tries to fetch data from local cache entity, if not there, get single entry from the external system. Cache only that record (read-through caching) Use when whole database too big or costly to synchronize. Integration only touches a small portion of the database. Avoid if access to lists of data is needed up front
D. ... is needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.
E. ... caches only summary data that is frequently lister, joined or searched. Full detail for a ) single entry is fetched directly from external system. Use when whole database too big or costly to synchronize. Details are only required for single entities (not lists)
F. Entity is exposed as read-only and API is available to centralize business logic for entity creation/update
G. Same as ECS with local replica but synchronization logic is separated. Pro: Code independence. Consumers of CS is not affected by Sync. Sync can orchestrate several CS
H. Entity is not in Outsystems but in an external ERP system. IS just makes remote call to v external system/database. No data is being kept inside OS. Data retrieval may not be optimized as it needs to traverse two different systems to get the information back. Con: Integration API must support all use cases
I. ... a wrapper used to contain the logic, actions and data that will expose code that is inside of ) external library or to inspect external database and import the data structures so they can be used as entities inside of OS
J. Same as Base ECS pattern, but have a local replica. Store data to serve as a local cache. Pro: Leverage Entity Use, Simpler Integration API. Con: Less impact on source system
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 9
Foundation may have non-business services and business services in them
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 10
Which of the below matches the most to Core Module Pattern - Base ECS Pattern...
A. ... a wrapper used to contain the logic, actions and data that will expose code that is inside of external library or to inspect external database and import the data structures so they can be used as entities inside of OS
B. ... caches only summary data that is frequently lister, joined or searched. Full detail for a single entry is fetched directly from external system. Use when whole database too big or costly to synchronize. Details are only required for single entities (not lists)
C. Same as ECS with local replica but synchronization logic is separated. Pro: Code independence. Consumers of CS is not affected by Sync. Sync can orchestrate several CS
D. ... is a pattern with two modules, a connector module that can be used to encapsulate an external API with the input/output structures and a wrapper module to expose the normalized API to the consumers.
E. ... is needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.
F. Same as ECS with local replica but API module is provided. So any changes to the external system can notify OS, which OS then gets update from the ERP system (subscription system)
G. Same as Base ECS pattern, but have a local replica. Store data to serve as a local cache. Pro: Leverage Entity Use, Simpler Integration API. Con: Less impact on source system
H. ... Entity is not in Outsystems but in an external ERP system. IS just makes remote call to external system/database. No data is being kept inside OS. Data retrieval may not be optimized as it needs to traverse two different systems to get the information back. Con: Integration API must support all use cases
I. ... tries to fetch data from local cache entity, if not there, get single entry from the external system. Cache only that record (read-through caching) Use when whole database too big or costly to synchronize. Integration only touches a small portion of the database. Avoid if access to lists of data is needed up front
J. ... Entity is exposed as read-only and API is available to centralize business logic for entity creation/update
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 11
_Eng module is for
Isolated Business Logic (Actions) or Core Widgets (blocks), to manage complexity, compositio or to have its own lifecycle.
Logic to Synchronize data in CS's with an external system. Isolating this logic makes the CS completely system agnostic and it's easier to decouple or replace the external system.
A BL becomes a Calculation Engine if it performs complex calculations, (e.g. an invoice calculation engine or an insurance simulator). Engines are usually subject to versions.
Technical wrapper to expose an API to External consumers, keeping core services system agnostic and supporting multiple versions of the API.
Reusable Core Services with public entities, actions, and blocks.
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 12
Regarding Validation Rules for application composition, which of the following sentences is correct?
Common modules and services should be isolated in a separate app that can be referenced by other apps.
Owners of the Application should not be mixed, but mixing Sponsors has no direct impact on the release.
If you follow all the rules for validating modules, your application composition will be sound, and easy to maintain and deploy.
Applications in the Foundation layer can reference Applications in the End-user layer.
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 13
In which of the following scenarios should you choose to clone a built-in Style Guide?
When minor customizations to the base theme should be done inside the app theme.
It is not possible to customize a built-in Style Guide, since it is part of OutSystems UI.
When you want to introduce extensive changes to an existing theme.
When it is not possible to benefit from any existing theme and extensive changes are needed.
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 14
Which of the below is NOT a reason why application Architecture is important when building quality software solutions?
A. Reduces Costs : Architecture benefits are not only technical, but affect how you operate
B. Reduces Risk : Architecture is a cost effective way to mitigate substantial risks and ensure ^ success
C. Manages Complexity : Helps reduce emerging complexity by focusing on relevant properties and omitting irrelevant details, thus leading to simpler representation
D. Facilitate Change : When something comes up that requires you to veer from the origina design or path, architecture of your system can show you exactly what needs to change and help with communication and planning.
F. Supports Planning : Helps the team anticipate and build solutions
B. Helps Communication : Helps you to get buy in from the business and to communicate overall plan to them
G. Drives Consensus : Helps create common ground with the team
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)
Question No. 15
Which of the below is not part of the Architecture Validation
No Downward References To Foundation Modules
No Side References Between End-User Modules
No Circular References
No Upward References
Reveal Solution Select one option, then reveal solution.
View discussion (0 Comments)