[2024年更新]合格できるArchitecture-Specialist-11試験にはリアルな問題解答 [Q35-Q58]

Share

[2024年更新]合格できるArchitecture-Specialist-11試験にはリアルな問題解答

Architecture-Specialist-11試験問題ゲット最新[2024]と正解回答

質問 # 35
_BL module is for

  • A. Technical wrapper to expose an API to External consumers, keeping core services system agnostic and supporting multiple versions of the API.
  • B. Isolated Business Logic (Actions), to manage complexity, composition or to have its own 'ifecycle.
  • 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. Reusable Core Services with public entities, actions, and blocks.
  • E. 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.

正解:B


質問 # 36
_API module is for

  • A. 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.
  • B. Technical wrapper to expose an API to External consumers, keeping core services system agnostic and supporting multiple versions of the API.
  • C. Isolated Business Logic (Actions) or Core Widgets (blocks), to manage complexity, composition or to have its own lifecycle.
  • D. Reusable Core Services with public entities, actions, and blocks.
  • E. 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.

正解:B


質問 # 37
Considering Discovery, which of the following sentences is FALSE?

  • A. Discovery only validates architecture rules at the module level.
  • B. Discovery automatically assigns a module to an Architecture Canvas layer, following the module's naming convention.
  • C. Discovery cannot categorise modules to domains
  • D. Discovery allows you to determine for every module, which elements are being consumed by other modules.

正解:A


質問 # 38
Which of the below is NOT a Synchronization Best Practice for mobile application?

  • A. Do not use Entity Bulk Operation to ensure small lightweight updates
  • B. Sync only when required. p At session start: sync summary data to local storage At process start: sync process detail to local storage At process/transaction end, sync back to server
  • C. Only synchronize delta : Use control timestamps
    C Avoid long synchronization in a single transaction
  • D. Only synchronize relevant data
  • E. Ensure sync granularity: Prepare for constant retries without repeating work due to network loss. Sync in chunks, incremental by entity
  • F. Sync only when strictly required
    E Don't sync on every screen or online event

正解:F


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

  • A. Non-core Entities
  • B. Core Entities (exposed as read-only)
  • C. Entities to save UI states
  • D. CRUD actions for Entities

正解:C


質問 # 40
The Architecture Design Process has three steps. Which of the options below is NOT one of those steps?

  • A. Disclose
  • B. Organize
  • C. Assemble
  • D. Plan

正解:D


質問 # 41
Foundation may have non-business services and business services in them

  • A. TRUE
  • B. FALSE

正解:B


質問 # 42
Which of the below matches the most to Core Module Pattern - ECS Lazy Load variation

  • A. 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
  • 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. ... 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. ... 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. ... a wrapper used to contain the logic, actions and data that will expose code that is inside of i external library or to inspect external database and import the data structures so they can be used as entities inside of OS
  • 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. 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)
  • 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

正解:C


質問 # 43
Which of the following recommendations should be applied to the Core layer?

  • A. Core modules should not have Core Entities.
  • B. Core modules should have Front-end Screens for testing purposes.
  • C. Core modules should have public Read-only Entities.
  • D. Core modules should not have business logic.

正解:C


質問 # 44
Themes and Layouts are an important element of an application. In which of the following would you define these elements?

  • A. MyApp_MTh, in the Foundation layer.
  • B. MyApp_CS Module, in the Foundation layer
  • C. MyApp_Th Module, in the End-User layer
  • D. MyApp_BL, in the Foundation Layer.

正解:C


質問 # 45
Which of the below is NOT a reason why application Architecture is important when building quality software solutions?

  • A. Reduces Risk : Architecture is a cost effective way to mitigate substantial risks and ensure ^ success
  • B. Supports Planning : Helps the team anticipate and build solutions
  • C. Helps Communication : Helps you to get buy in from the business and to communicate overall plan to them
  • D. Reduces Costs : Architecture benefits are not only technical, but affect how you operate
  • E. Manages Complexity : Helps reduce emerging complexity by focusing on relevant properties and omitting irrelevant details, thus leading to simpler representation
  • F. Drives Consensus : Helps create common ground with the team
  • G. 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.

正解:C


質問 # 46
_IS module is for

  • A. Theme, look & feel elements, menu, etc.
  • B. 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).
  • C. Reusable UI Patterns for layout and display only - no Business logic.
  • D. Generic Library module.
  • E. technical wrapper to consume and normalize an external service.

正解:E


質問 # 47
Which of the following is a benefit of having good architecture?

  • A. Unmanageable dependencies
  • B. Slow-moving legacy systems
  • C. Poor service abstraction
  • D. Manages complexity

正解:D


質問 # 48
ISO/IEC 9126:1991 included several different dimensions. Which is NOT part of ISO/IEC 9126:1991?

  • A. Functionality : Functionality as a set of functions that satisfy needs
  • B. Portability : Portability which defines the ability to move software between environments
  • C. Efficiency : Efficiency which relates to the performance to the amount of resources used
  • D. Security : Security which relates to the strength of the of the software against cybersecurity attacks
  • E. Reliability : Reliability which ensures that a software solution can maintain it performance over a period of time
  • F. Maintainability : Maintainability which relates to the effort needed to make modifications
  • G. Usability : Usability from the point of view of the users

正解:D


質問 # 49
Which of the below matches the most to Core Module Pattern - ECS with Local Replica Pattern...

  • A. ... 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)
  • 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.
    p 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
  • 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. ... 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
  • E. ... 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
  • F. ... is needed if data is coming from MULTIPLE external systems. IS will decide which driver to use depending on the data.
  • G. ... Entity is exposed as read-only and API is available to centralize business logic for entity creation/update
  • 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

正解:C


質問 # 50
In OutSystems, an application with Foundation, Core, and End-User Modules is a

  • A. Core Application.
  • B. End-User Application.
  • C. Foundation Application.

正解:B


質問 # 51
In which of the following scenarios should you choose to clone a built-in Style Guide?

  • A. It is not possible to customize a built-in Style Guide, since it is part of OutSystems UI.
  • B. When it is not possible to benefit from any existing theme and extensive changes are needed.
  • C. When minor customizations to the base theme should be done inside the app theme.
  • D. When you want to introduce extensive changes to an existing theme.

正解:D


質問 # 52
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

正解:C

解説:
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


質問 # 53
SSL Pinning is a security best practice for mobile application. Which of the below is FALSE about SSL Pinning?

  • A. SSL Pinning or HTTP Public Key Pinning (HPKP) helps reduce man-in-the-middle attacks
  • B. Works on the client side and adds verification of the server certificate against hashes of public keys, which are pre-bundled with the mobile app
  • C. SSL Pinning does not mean hardcoding the public key into the code.
  • D. All of the above are true

正解:C


質問 # 54
Which of the below is NOT a disadvantage of having a fragmented system or microservices?

  • A. All of the above
  • B. Inter-process communication : network latency and hiccups
  • C. Complicated Debugging and troubleshooting : root cause may be deep inside the chain of services
  • D. Limited data mashup in memory and limited to APIs
  • E. Multiple transactions committed independently
  • F. Security : need to manage credentials and access management
  • G. Monitoring & Logging : for effective monitoring & logging, requires centralized service
  • H. Fault tolerance : communication errors, service consistency

正解:A


質問 # 55
The Architecture Canvas is a multi-layer framework. Which of the following is NOT a benefit of this framework?

  • A. It optimizes lifecycle independence.
  • B. It promotes a correct abstraction of reusable services.
  • C. It minimizes the impact of changes.
  • D. It identifies possible performance bottlenecks.

正解:D


質問 # 56
Consider the common style guide scenarios presented in this course. Which of the following statements is true?

  • A. The "specialize a built-in Style Guide" scenario should be used when the changes to the base theme are not extensive.
  • B. Build-your-own Style Guide should be used when the changes in the theme are not extensive.
  • C. The "clone a built-in Style Guide" should be used when you want to extend an existing theme.

正解:A


質問 # 57
_Eng module is for

  • A. Technical wrapper to expose an API to External consumers, keeping core services system agnostic and supporting multiple versions of the API.
  • B. Isolated Business Logic (Actions) or Core Widgets (blocks), to manage complexity, compositio or to have its own lifecycle.
  • C. Reusable Core Services with public entities, actions, and blocks.
  • D. 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.
  • E. 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.

正解:E


質問 # 58
......

練習できるArchitecture-Specialist-11問題で認証試験問題集ガイド解答は練習専門PassTest:https://www.passtest.jp/OutSystems/Architecture-Specialist-11-shiken.html

無料OutSystems Architecture-Specialist-11テスト練習テスト問題試験問題集:https://drive.google.com/open?id=1c0MUtd8X0NnOe3GxCaRI9ht8F1tS7L7l