Winter Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: s2p65

Easiest Solution 2 Pass Your Certification Exams

Architecture-Specialist-11 OutSystems Architecture Specialist (OutSystems 11) Exam Free Practice Exam Questions (2025 Updated)

Prepare effectively for your OutSystems Architecture-Specialist-11 Architecture Specialist (OutSystems 11) Exam certification with our extensive collection of free, high-quality practice questions. Each question is designed to mirror the actual exam format and objectives, complete with comprehensive answers and detailed explanations. Our materials are regularly updated for 2025, ensuring you have the most current resources to build confidence and succeed on your first attempt.

_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.

Adopting a naming convention can have some benefits. Of the sentences below, which one is NOT a benefit of adopting a naming convention?

A.

Enforce the reference architecture.

B.

Avoid error codes.

C.

Normalize patterns.

D.

Reveal the nature of each Module.

Which of the below is NOT part of the three step process of Architecture Design Process?

A.

Assemble

B.

Shape

C.

Disclose

D.

Organize

The Architecture Canvas is a ...

A.

framework to support Architecture Conventions for Modules in Outsystems

B.

framework to support application architecture design in Outsystems

C.

framework to support Architecture Design Process in Outsystems

Which of the below is NOT a disadvantage of having a fragmented system or microservices?

A.

All of the above

B.

Monitoring & Logging : for effective monitoring & logging, requires centralized service

C.

Inter-process communication : network latency and hiccups

D.

Complicated Debugging and troubleshooting : root cause may be deep inside the chain of services

E.

Security : need to manage credentials and access management

F.

Limited data mashup in memory and limited to APIs

G.

Multiple transactions committed independently

Which of the below is not part of the Architecture Validation

A.

No Downward References To Foundation Modules

B.

No Side References Between End-User Modules

C.

No Circular References

D.

No Upward References

Of the options below, which one is a benefit of adopting the Architecture Canvas?

A.

It's an automatic way to find and fix architecture issues.

B.

It's a systematic approach to architecture design

C.

It promotes the business users' collaboration and understanding

D.

It's a faster architecture design

Which of the below are not recommendations for Architecture Validations

A.

All public entities in Core Modules should be set to Read-only

B.

No business logic in the Foundational Modules

C.

No core entities in Foundational Modules

D.

No screens in the End User Layer

E.

No front-end screens in Core Modules

Which of the following Data elements can we find in a End-User layer Module?

A.

Non-core Entities

B.

Entities to save UI states

C.

Core Entities (exposed as read-only)

D.

CRUD actions for Entities

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.

Owners of the Application should not be mixed, but mixing Sponsors has no direct impact on the release.

C.

If you follow all the rules for validating modules, your application composition will be sound, and easy to maintain and deploy.

D.

Applications in the Foundation layer can reference Applications in the End-user layer.

What is the Architecture Blueprint?

A.

Is the end result of Architecture Design Process. At this point you should add dependencies between the Modules.

B.

Above is the answer

Which of the below is not a best practice for mobile security:authentication?

A.

Store password in local storage

B.

Encrypt (only) sensitive data

C.

Authentication : Use google or facebook for online authentication or fingerprint or pin for offline authentication

_Lib module is for

A.

have several integration services with different systems, performing the same type of O operation (e.g. printers) you can create several drivers exposing the same API, with specialized implementations (like the transparency services pattern).

B.

Technical wrapper to consume and normalize an external service

C.

Reusable Core Services with public entities, actions, and blocks.

D.

Theme, look & feel elements, menu, etc.

E.

Generic Library module

F.

Reusable UI Patterns for layout and display only - no Business logic.

Architecture Canvas has 3 layers. Which is not part of the 3 layer framework?

A.

Foundation

B.

Ochestrator

C.

End-User Layer

D.

Core

Concepts are assembled into Modules in the Assembl are not principles in the Assemble step.

A.

Don't join concepts with different lifecycles

B.

Apply known design patterns

C.

N/A

D.

Join conceptually-related concepts

E.

Isolate reusable logic from Integration logic

What does NOT happen due to a lack of architecture concerns?

A.

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

B.

Tech Debt : AI Mentor will raise architectural tech debt such as cyclic dependency and side to side dependency

C.

Unmanageable dependencies : System not isolated from each other. Updating or replacing a system has a cascade/snowball effect on other systems

D.

Poor service abstraction : Business concepts not correctly isolated, business rules tend to be spread over different systems and little to no code reuse

Which of the following is NOT a benefit of having well-defined application architecture?

A.

Poor service abstraction

B.

Reduces costs

C.

Reduces risk

D.

Supports planning

Which of the below matches the most to Core Module Pattern - ECS Summary Cache only variation

A.

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

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.

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)

E.

... Entity is exposed as read-only and API is available to centralize business logic for entity ^ creation/update

F.

... is needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.

G.

... tries to fetch data from local cache entity, if not there, get single entry from the external p 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.

Which of the below best matches this statement : "Needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data."

A.

Transparency Service Pattern 1 way (simplification)

B.

Library : Extension Pattern

C.

ECS with isolated synchronization logic

D.

ECS Lazy Load variation

E.

ECS with publish/subscribe through an ESB

F.

ECS Summary cache only variation

G.

Library : Connector Pattern

Which of the below matches the most to Core Module Pattern - ECS with Direct Integration 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 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.

... 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

D.

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

E.

... 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.

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

Copyright © 2014-2025 Solution2Pass. All Rights Reserved