QUESTIONS WITH ANSWERS GRADED A+
Labels - ✔✔Selectable data constraints on Reference Selectors
✔✔Where can you utilize XPaths in microflows?
In the 'Open page' action
In the 'Retrieve' action
In the input parameter
In the 'Commit' action
Submit Answers - ✔✔In the 'Retrieve' action
✔✔How do you begin typing an XPath?
'
<
[
( - ✔✔[
✔✔Question 2:
If you want to open the XPath auto-complete menu, you need to press:
Shift+Space
Ctrl + Shift
Ctrl + Space
Ctrl + O - ✔✔Ctrl + Space
✔✔Question 3:
Say you are writing an XPath in a Retrieve action for the VacationRequest entity in a
Microflow. If you write in the XPath window [Status = 'Cancelled'], what will be returned?
A new object with Status = 'Cancelled'.
A list of all requests except the ones that are cancelled.
A new list of requests where the Status will not be 'Cancelled'.
A list of all requests with the status set to 'Cancelled'. - ✔✔A list of all requests with the
status set to 'Cancelled'.
✔✔Question 4:
Say you are writing an XPath in a Retrieve action on the VacationRequest entity in a
Microflow. If you write in the XPath window
[VacationRequest.VacationRequest_Submitter='[%CurrentUser%]'], what will be
returned?
A list of all the vacation requests submitted by the current user that have yet to be
approved.
A list of all the vacation requests submitted by the current user where the status is
'Approved'.
The earliest Vacation Request that the current user has submitted.
,A list of all vacation requests submitted by the current user. - ✔✔A list of all vacation
requests submitted by the current user.
✔✔Let's assume you add a new decimal attribute to the VacationRequest entity called
'DaysUsed'. The value represents the total amount of days used for the requested
vacation. If you write a microflow with a Retrieve action, what will be the return if we use
the following XPath [DaysUsed < 4.5 and
not(VacationManagement.VacationRequest_Submitter/Administration.Account)]
A list of all VacationRequests that are shorter than 4.5 days and do not have a
Submitter assigned
A list of all VacationRequests that are shorter than 4.5 days and have a Submitter
assigned
A list of all VacationRequests that are longer than 4.5 days
A list of all VacationRequests that have been approved and are shorter than 4.5 days -
✔✔A list of all VacationRequests that are shorter than 4.5 days and do not have a
Submitter assigned
✔✔If we populate a DataGrid of VacationRequest entities with the following XPath
constraint, what will happen? [StartDate = empty]
This XPath will throw an error in Mendix Studio Pro. DateTimes cannot be empty.
The grid will show All VacationRequests where the StartDate is greater than the current
date.
The grid will show All VacationRequests where the StartDate is not populated.
The grid will show the VacationRequest with the oldest StartDate. - ✔✔The grid will
show All VacationRequests where the StartDate is not populated.
✔✔Which of the following options indicates a correct way of structuring resources within
App Explorer?
By switching to Structuring mode
By downloading App Explorer Structure app
Automatically
Manually - ✔✔Manually
✔✔When structuring the App Explorer, which of the following subfolders would be the
best choice to store things like Enumerations and Regular Expressions?
Pages
Microflows
Domain model
Resources - ✔✔Resources
✔✔When connecting a profile picture to an account of a team member, providing that it
should be possible to alter the picture, which of the following options would you choose?
Create a ProfilePicture entity and configuring Image entity in the System module as its
generalization.
Copy the Image entity from the System module to the Domain Model of your module.
, Directly use the Image entity of the System module in the Domain Model of your
module. - ✔✔Create a ProfilePicture entity and configuring Image entity in the System
module as its generalization.
✔✔As Users by default always have multiple UserRoles, which of the following options
can you put in place to ensure a user gets restricted to only one user role?
Adjusting the type association between User and User role.
Adding the microflow logic.
Adjusting the user settings in Project Security.
Adding an After Commit Event Handler. - ✔✔Adjusting the user settings in Project
Security.
✔✔Which widget from the listed below needs to be used inside of a List View for
visualizing a dynamic image?
Image Uploader
Image Viewer
File Uploader
Image - ✔✔Image Viewer
✔✔Which of the following options is used for featuring the navigation menu in a
sidebar?
Popup
Atlas Topbar
Atlas Default
Atlas Sidebar - ✔✔Atlas Default
✔✔Which of the following terms refers to the empty areas that form the canvas for any
pages that make use of the layout?
Scroll containers
Layout grid
Placeholders
Contents - ✔✔Placeholders
✔✔When a layout is based on another layout, which of the mentioned option refers to
the parent layout?
Main layout
Template layout
Master layout
Placeholder layout - ✔✔Master layout
✔✔Which of the principles needs to be utilized to reduce duplication of already created
elements?
BUY
DRY
FLY