Questions with 100% Verified Solutions
Where on the page can the Menu document be displayed in an app? - ANSWER -
Anywhere
What alternative to drawing an association between two entities can you use to
connect two entities, each located in a separate domain model? - ANSWER -By
right-clicking in an entity and selecting Add>Association.
Which of the following XPath constraints should be used to allow users to only
see their own notifications? - ANSWER -
[Notifications.Notification_Account='[%CurrentUser%]']
What can you use whenever you wish to display a navigation menu, but not the
main navigation tree? - ANSWER -Menu
How many source and destination languages can you specify? - ANSWER -One
source, one destination
What does default project language define? - ANSWER -The language which
users will see when using your app.
When and how a default language of an app needs to be selected? - ANSWER -
Automatically at the moment of app creation.
Where can you choose the development language? - ANSWER -In the toolbar of
Studio Pro
Which of the following functionalities do you need to use to show a complete list
of all translatable texts of a source and destination language? - ANSWER -Batch
translation
,What is the easiest way to collect feedback from users from within your app? -
ANSWER -Use the feedback widget
Where is page access configured? - ANSWER -Module Security
What would be a reasonable validation rule to use for
AllowedNumberOfVisitorsPerDay? - ANSWER -Range <= 1000
How can you easily manage accounts for your app? - ANSWER -Connect
navigation to the built-in Account_Overview page
Is it possible limit an entity to only one object? - ANSWER -Yes, through a
Microflow
What is a limitation of a sub-microflow compared to a regular microflow? -
ANSWER -None. Sub-microflows are equally capable.
What main benefit do sub-microflows offer? - ANSWER -Better maintainability
If you want to leave notes for future developers (or yourself) in a microflow, what
can you use? - ANSWER -Annotations
What is a limitation of a rule compared to a microflow? - ANSWER -You have a
smaller selection of activities.
You've replaced a microflow with newer functionality and want to test it.
However, you don't want to delete the old microflow permanently in case
something goes wrong. How can you do this? - ANSWER -Exclude it from the
project.
How can you allow users to access parts of an app (like a login page) without
needing to log in? - ANSWER -Set up anonymous users.
In a microflow, what is a token? - ANSWER -A system-generated value.
, In a microflow expression, "toUpperCase" is an example of what? - ANSWER -A
function
In a microflow, what would be an example of a variable? - ANSWER -$Customer
You need to debug a microflow in production but don't want to impact your users.
How can you trigger debugging only when you personally are running the
microflow? - ANSWER -Set a breakpoint condition.
How can you have a microflow automatically run at a specific moment in time? -
ANSWER -Create and enable a scheduled event.
What can you use to exit a loop early, instead of finishing the entire list of iterator
objects? - ANSWER -A break event
You want to find the total number of objects in a list. What can you easily use to
do this? - ANSWER -Use an aggregate list function.
What are batches used for? - ANSWER -Processing large amounts of data.
What is the list object in a loop called? - ANSWER -An iterator
What is another way of calling an association? - ANSWER -Reference
How many associations can you add between two entities? - ANSWER -Many
associations of various multiplicity.
What is a good reason to choose to use an Information Entity instead of multiple
associations? - ANSWER -You want to display additional information about an
association.
Which of the event handlers does always need to return a boolean return value? -
ANSWER -The before commit.