QUESTIONS WITH ANSWERS GRADED A+
✔✔Which function is used to merge a complete branch into the mainline and is only
available on the main line?
Advanced merge
Port fix
Merge feature branch
Quick fix - ✔✔Merge feature branch
✔✔Which of the below mentioned options can be used to merge revisions into and from
all lines, main line or branch line?
Port fix
Merge feature branch
Quick fix
Advanced merge - ✔✔Advanced merge
✔✔Where in Mendix Studio Pro can you configure XPaths?
Navigation
Text widgets
List Views
Page access rules - ✔✔List views
✔✔Which Widget feature utilizes XPaths?
Selectable data constraints on Reference Selectors
Dynamic text in Labels
Styling properties of Action Buttons
The tab index of a Group Box - ✔✔Selectable data constraints on Reference Selectors
✔✔Where can you utilize XPaths in microflows?
In the 'Retrieve' action
In the 'Commit' action
In the 'Open page' action
In the input parameter - ✔✔In the Retrieve action
✔✔How do you begin typing an XPath?
<
(
'
[ - ✔✔[
✔✔If you want to open the XPath auto-complete menu, you need to press:
Ctrl + O
Ctrl + Space
, Ctrl + Shift
Shift+Space - ✔✔Ctrl + Space
✔✔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 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 new object with Status = 'Cancelled'. - ✔✔A list of all requests with the status set to
'Cancelled'
✔✔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 vacation requests submitted by the current user.
The earliest Vacation Request that the current user has submitted.
A list of all the vacation requests submitted by the current user where the status is
'Approved'.
A list of all the vacation requests submitted by the current user that have yet to be
approved. - ✔✔A list of all vacation requests submitted by the 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 have a Submitter
assigned
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
A list of all VacationRequests that are longer 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]
The grid will show the VacationRequest with the oldest StartDate.
This XPath will throw an error in Mendix Studio Pro. DateTimes cannot be empty.
The grid will show All VacationRequests where the StartDate is not populated.
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
✔✔Which of the following options indicates a correct way of structuring resources within
App Explorer?