
Valid Architecture-Specialist-11 Exam Dumps Ensure you a HIGH SCORE (2023)
Pass Architecture-Specialist-11 Exam with Latest Questions
NEW QUESTION # 46
_Eng module is for
- A. Isolated Business Logic (Actions) or Core Widgets (blocks), to manage complexity, compositio or to have its own lifecycle.
- B. 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.
- C. 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.
- D. Technical wrapper to expose an API to External consumers, keeping core services system agnostic and supporting multiple versions of the API.
- E. Reusable Core Services with public entities, actions, and blocks.
Answer: C
NEW QUESTION # 47
Consider the following Module names and the suggested naming conventions for Modules. Which of these is a mobile Module?
- A. Customer_CW
- B. Service_CS
- C. Pricing_MBL
- D. Mobile_API
Answer: C
NEW QUESTION # 48
Which of the below is NOT part of the three step process of Architecture Design Process?
- A. Shape
- B. Disclose
- C. Assemble
- D. Organize
Answer: A
NEW QUESTION # 49
Considering Discovery, which of the following sentences is FALSE?
- A. Discovery automatically assigns a module to an Architecture Canvas layer, following the module's naming convention.
- B. Discovery only validates architecture rules at the module level.
- C. Discovery allows you to determine for every module, which elements are being consumed by other modules.
- D. Discovery cannot categorise modules to domains
Answer: B
NEW QUESTION # 50
ISO/IEC 9126:1991 included several different dimensions. Which is NOT part of ISO/IEC 9126:1991?
- A. Usability : Usability from the point of view of the users
- B. Reliability : Reliability which ensures that a software solution can maintain it performance over a period of time
- C. Maintainability : Maintainability which relates to the effort needed to make modifications
- D. Portability : Portability which defines the ability to move software between environments
- E. Efficiency : Efficiency which relates to the performance to the amount of resources used
- F. Security : Security which relates to the strength of the of the software against cybersecurity attacks
- G. Functionality : Functionality as a set of functions that satisfy needs
Answer: F
NEW QUESTION # 51
What is NOT a best practice for Mobile Application Architecture: Local Storage?
- A. Sync data required per use case: Sync summary data on Session start. On data selection, sync p its details.
- B. Sync on every screen or online event
- C. Adopt the correct sync frequency: Either at process start and online or at process/transaction end and online
Answer: B
Explanation:
Example: if you are accessing Purchasing data, sync the summary data on Session start. On selecting the Purchasing item, sync the details of the Purchasing item such as photos or price, a
NEW QUESTION # 52
Which of the following options denotes the advantages of defining a Style Guide up front?
- A. Security and scalability.
- B. Improve performance and maintainability.
- C. Speed up the development phase.
- D. Allows apps and the Style Guide to be deployed to Production.
Answer: B
NEW QUESTION # 53
Which of the below matches the most to Core Module Pattern - Base ECS Pattern...
- A. ... Entity is exposed as read-only and API is available to centralize business logic for entity creation/update
- 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 needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.
- E. ... 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
- 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. ... 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.
- H. 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
- 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. ... 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
Answer: G
NEW QUESTION # 54
In which of the following scenarios should you choose to clone a built-in Style Guide?
- A. When minor customizations to the base theme should be done inside the app theme.
- B. When it is not possible to benefit from any existing theme and extensive changes are needed.
- C. When you want to introduce extensive changes to an existing theme.
- D. It is not possible to customize a built-in Style Guide, since it is part of OutSystems UI.
Answer: C
NEW QUESTION # 55
What is done in the Organize part of the Architecture Design Process?
- A. Concepts are assembled into Modules
- B. Concepts are disclosed to the Architecture team
- C. Concepts are added to the layers of the Architecture Canvas
Answer: C
NEW QUESTION # 56
What is Application Composition Process?
- A. Process to package modules into apps
- B. Answer is the above.
Answer: A
NEW QUESTION # 57
OAPI is different compared to API. What is inside an OAPI?
- A. Service Action
- B. REST API
Answer: A
NEW QUESTION # 58
_CW module is for
- A. Core Widgets (blocks), to manage complexity, composition or to have its own lifecycle.
- B. 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.
- C. 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.
- D. Technical wrapper to expose an API to External consumers, keeping core services system agnostic and supporting multiple versions of the API.
- E. Reusable Core Services with public entities, actions, and blocks.
Answer: A
NEW QUESTION # 59
Which of the below matches the most to Core Module Pattern - ECS with Isolated Synchronization Logic Pattern...
- A. ... Entity is not in Outsystems but in an external ERP system. IS just makes remote call to p 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
- B. ... caches only summary data that is frequently lister, joined or searched. Full detail for a O 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. ... Entity is exposed as read-only and API is available to centralize business logic for entity creation/update
- D. 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
- E. ... tries to fetch data from local cache entity, if not there, get single entry from the external v 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
- F. ... 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.
- G. ... is needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.
- H. 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)
- I. 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
- J. ... a wrapper used to contain the logic, actions and data that will expose code that is inside of O external library or to inspect external database and import the data structures so they can be used as entities inside of OS
Answer: D
NEW QUESTION # 60
Which is not a reason you should use Architecture Canvas?
- A. Minimizes impact of changes
- B. Promotes abstraction of reusable services
- C. Promotes segregation and loose coupling of services
- D. Optimizes lifecycle independence
Answer: C
NEW QUESTION # 61
......
Architecture-Specialist-11 Exam Practice Questions prepared by OutSystems Professionals: https://testoutce.pass4leader.com/OutSystems/Architecture-Specialist-11-exam.html