[Mar 31, 2024] Genuine Architecture-Specialist-11 Exam Dumps Free Demo
Printable & Easy to Use Architecture Specialization Architecture-Specialist-11 Dumps 100% Same Q&A In Your Real Exam
NEW QUESTION # 12
Regarding Validation Rules for application composition, which of the following sentences is correct?
- A. Common modules and services should be isolated in a separate app that can be referenced by other apps.
- B. Applications in the Foundation layer can reference Applications in the End-user layer.
- C. If you follow all the rules for validating modules, your application composition will be sound, and easy to maintain and deploy.
- D. Owners of the Application should not be mixed, but mixing Sponsors has no direct impact on the release.
Answer: A
NEW QUESTION # 13
Which of the following Data elements can we find in a Foundation layer Module?
- A. Entities to save UI states
- B. Core Entities (exposed as read-only)
- C. CRUD actions for Entities
- D. Non-core Entities
Answer: D
NEW QUESTION # 14
_Pat module is for
- A. to have several integration services with different systems, performing the same type of operation (e.g. printers) you can create several drivers exposing the same API, with specialized implementations (like the transparency services pattern).
- B. Reusable UI Patterns for layout and display only - no Business logic.
- C. Theme, look & feel elements, menu, etc.
- D. Generic Library module.
- E. technical wrapper to consume and normalize an external service.
Answer: B
NEW QUESTION # 15
In OutSystems, a Core Application can contain ...
- A. End-User and Core Modules.
- B. Only Foundation Modules.
- C. End-User, Core, and Foundation Modules.
- D. Foundation and Core Modules
Answer: D
NEW QUESTION # 16
Of the options below, which one is a benefit of adopting the Architecture Canvas?
- A. It's a faster architecture design
- B. It's an automatic way to find and fix architecture issues.
- C. It's a systematic approach to architecture design
- D. It promotes the business users' collaboration and understanding
Answer: C
NEW QUESTION # 17
Which of the below are not recommendations for Architecture Validations
- A. No front-end screens in Core Modules
- B. No core entities in Foundational Modules
- C. No screens in the End User Layer
- D. All public entities in Core Modules should be set to Read-only
- E. No business logic in the Foundational Modules
Answer: C
NEW QUESTION # 18
Considering Discovery, which of the following sentences is FALSE?
- A. Discovery cannot categorise modules to domains
- B. Discovery automatically assigns a module to an Architecture Canvas layer, following the module's naming convention.
- C. Discovery only validates architecture rules at the module level.
- D. Discovery allows you to determine for every module, which elements are being consumed by other modules.
Answer: C
NEW QUESTION # 19
Which of the below is NOT a weak dependency as of OS11?
- A. Structures
- B. Static Entities
- C. Service Actions
- D. Screens
- E. Database Entities
- F. Server Actions
- G. Local Storage Entities
Answer: F
NEW QUESTION # 20
Which of the below is NOT a reason for adopting Naming Conventions for Modules
- A. Ensure it belongs to the correct layer
- B. Normalize known patterns
- C. Reveal nature of each module
- D. Enforce the reference architecture
Answer: A
NEW QUESTION # 21
What does NOT happen due to a lack of architecture concerns?
- A. Tech Debt : AI Mentor will raise architectural tech debt such as cyclic dependency and side to side dependency
- B. Unmanageable dependencies : System not isolated from each other. Updating or replacing a system has a cascade/snowball effect on other systems
- C. 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
- D. Poor service abstraction : Business concepts not correctly isolated, business rules tend to be spread over different systems and little to no code reuse
Answer: A
NEW QUESTION # 22
Concepts are assembled into Modules in the Assembl are not principles in the Assemble step.
- A. Apply known design patterns
- B. Don't join concepts with different lifecycles
- C. Join conceptually-related concepts
- D. Isolate reusable logic from Integration logic
- E. N/A
Answer: E
NEW QUESTION # 23
The Architecture Design Process has three steps. Which of the options below is NOT one of those steps?
- A. Disclose
- B. Assemble
- C. Organize
- D. Plan
Answer: D
NEW QUESTION # 24
Which of the below is not part of the Architecture Validation Rules?
- A. Don't Mix Owners
- B. Don't Mix Sponsers : Split the Apps based on the Lines of Business
- C. Layer Applications Correctly
- D. Layer Modules Correctly
- E. Layer Entities Correctly
Answer: E
NEW QUESTION # 25
Elements such as the menu and login can be shared across different apps. In the menu and login are defined inside the theme. Which use case is this?
- A. Intranet
- B. Independent Apps
- C. Portal
Answer: C
NEW QUESTION # 26
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. Adopt the correct sync frequency: Either at process start and online or at process/transaction end and online
- C. Sync on every screen or online event
Answer: C
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 # 27
Which of the below is NOT a reason for Validating a Modules' Architecture?
- A. Prevent slow deployments, inflexible legacy systems
- B. Promotes abstraction of reusable services
- C. Minimizes impact of changes
- D. Stop unmanageable dependencies
- E. Avoid poor service abstraction
- F. Promotes microservices
- G. Optimizes lifecycle independence
Answer: F
NEW QUESTION # 28
What is the Architecture Blueprint?
- A. Above is the answer
- B. Is the end result of Architecture Design Process. At this point you should add dependencies between the Modules.
Answer: B
NEW QUESTION # 29
Which of the below matches the most to Core Module Pattern - Core Entity Pattern...
- A. ... 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
- B. is a pattern with two modules, a connector module that can be used to encapsulate an O external API with the input/output structures and a wrapper module to expose the normalized API to the consumers.
- C. ... Entity is exposed as read-only and API is available to centralize business logic for entity creation/update
- D. ... is needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.
- E. ... 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
- F. 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
- G. ... 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
- 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. ... 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)
- J. 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)
Answer: C
NEW QUESTION # 30
Which of the following options denotes the advantages of defining a Style Guide up front?
- A. Allows apps and the Style Guide to be deployed to Production.
- B. Security and scalability.
- C. Improve performance and maintainability.
- D. Speed up the development phase.
Answer: C
NEW QUESTION # 31
......
Architecture-Specialist-11 Practice Test Give You First Time Success with 100% Money Back Guarantee!: https://www.pass4surecert.com/OutSystems/Architecture-Specialist-11-practice-exam-dumps.html
All Obstacles During Architecture-Specialist-11 Exam Preparation with Architecture-Specialist-11 Real Test Questions: https://drive.google.com/open?id=1y_fQOljluVbeLQcU8XDIEK1NnVe9e3jz