ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 151 - AD01 discussion

Report
Export

What is NOT considered one of the golden rules for Object Design?

A.
Keep actions small and limited to a specific task
Answers
A.
Keep actions small and limited to a specific task
B.
Do not include business logic in the Object
Answers
B.
Do not include business logic in the Object
C.
Use InpuVOutput parameters to promote usability
Answers
C.
Use InpuVOutput parameters to promote usability
D.
Use a single Object for an entire application
Answers
D.
Use a single Object for an entire application
Suggested answer: D

Explanation:

The golden rules for Object Design in Blue Prism focus on creating modular, reusable, and maintainable objects. These rules are:

Keep actions small and limited to a specific task (Option A): This ensures that actions are simple, easy to understand, and reusable.

Do not include business logic in the Object (Option B): Business logic should be handled in the Process layer, keeping objects focused on interacting with applications.

Use Input/Output parameters to promote usability (Option C): This enhances the flexibility and reusability of objects by allowing different data to be passed in and out of actions.

However, using a single Object for an entire application (Option D) is not recommended. This approach would result in a monolithic and difficult-to-maintain object. Instead, it is better to create multiple objects, each handling a specific part of the application or a specific type of interaction.

Reference Refer to Blue Prism's best practices and guidelines on Object Design, which emphasize modularity, separation of concerns, and reusability.

asked 16/09/2024
Timothy Brown
33 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first