MENDIX INTERMEDIATE & ADVANCED EXAM
CERTIFICATION ACTUAL EXAM QUESTIONS AND
CORRECT DETAILED ANSWERS|ALREADY GRADED A+
Where in Mendix Studio Pro can you configure XPaths?
Text widgets
Navigation
Page access rules
List Views - ANSWER: List Views
Which widget feature utilizes XPaths?
The tab index of a Group Box
Styling properties of Action Buttons
Selectable data constraints on Reference Selectors
Dynamic text in Labels - ANSWER: Selectable data constraints on Reference Selectors
Where can you utilize XPaths in microflows?
In the input parameter
In the 'Open page' action
In the 'Retrieve' action
In the 'Commit' action - ANSWER: In the 'Retrieve' action
How do you begin typing an XPath?
<
(
[
' - ANSWER: [
If you want to open the XPath auto-complete menu, you need to press:
Shift+Space
Ctrl + O
Ctrl + Shift
Ctrl + Space - ANSWER: 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'. - ANSWER: 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.
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.
The earliest Vacation Request that the current user has submitted. - ANSWER: 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
- ANSWER: 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 All VacationRequests where the StartDate is greater than the
current date.
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 the VacationRequest with the oldest StartDate. - ANSWER: The
grid will show All VacationRequests where the StartDate is not populated.
What is the correct way of structuring resources within the App Explorer?
Manually
By switching to Structuring mode
By downloading App Explorer Structure app
Automatically - ANSWER: Manually
When structuring the App Explorer, which of the following subfolders would be the
best choice to store things like Enumerations and Regular Expressions?
Microflows
Domain model
Resources
Pages - ANSWER: Resources
, How can you connect a profile picture to the account of a team member in a way
that allows the picture to be altered?
Copy the Image entity from the System module to the Domain Model of your
module.
Create a ProfilePicture entity and configuring Image entity in the System module as
its generalization.
Directly use the Image entity of the System module in the Domain Model of your
module. - ANSWER: Create a ProfilePicture entity and configuring Image entity in the
System module as its generalization.
Which widget needs to be used inside of a List View for visualizing a dynamic image?
Dynamic Image
Image
File Uploader
Image Uploader - ANSWER: Dynamic Image
Which of the following options is used for featuring the navigation menu in a
sidebar?
Atlas Sidebar
Popup
Atlas Default
Atlas Topbar - ANSWER: 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?
Placeholders
Scroll containers
Layout grid
Contents - ANSWER: Placeholders
When a layout is based on another layout, which of the mentioned option refers to
the parent layout?
Master layout
Placeholder layout
Main layout
Template layout - ANSWER: Master layout
Which of the principles needs to be utilized to reduce duplication of already created
elements?
BUY
TRY
FLY
DRY - ANSWER: DRY
You want to re-use a header on multiple pages, which of the following options can
you use to ensure that the content of the header throughout the app automatically
changes after you modify its content?
CERTIFICATION ACTUAL EXAM QUESTIONS AND
CORRECT DETAILED ANSWERS|ALREADY GRADED A+
Where in Mendix Studio Pro can you configure XPaths?
Text widgets
Navigation
Page access rules
List Views - ANSWER: List Views
Which widget feature utilizes XPaths?
The tab index of a Group Box
Styling properties of Action Buttons
Selectable data constraints on Reference Selectors
Dynamic text in Labels - ANSWER: Selectable data constraints on Reference Selectors
Where can you utilize XPaths in microflows?
In the input parameter
In the 'Open page' action
In the 'Retrieve' action
In the 'Commit' action - ANSWER: In the 'Retrieve' action
How do you begin typing an XPath?
<
(
[
' - ANSWER: [
If you want to open the XPath auto-complete menu, you need to press:
Shift+Space
Ctrl + O
Ctrl + Shift
Ctrl + Space - ANSWER: 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'. - ANSWER: 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.
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.
The earliest Vacation Request that the current user has submitted. - ANSWER: 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
- ANSWER: 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 All VacationRequests where the StartDate is greater than the
current date.
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 the VacationRequest with the oldest StartDate. - ANSWER: The
grid will show All VacationRequests where the StartDate is not populated.
What is the correct way of structuring resources within the App Explorer?
Manually
By switching to Structuring mode
By downloading App Explorer Structure app
Automatically - ANSWER: Manually
When structuring the App Explorer, which of the following subfolders would be the
best choice to store things like Enumerations and Regular Expressions?
Microflows
Domain model
Resources
Pages - ANSWER: Resources
, How can you connect a profile picture to the account of a team member in a way
that allows the picture to be altered?
Copy the Image entity from the System module to the Domain Model of your
module.
Create a ProfilePicture entity and configuring Image entity in the System module as
its generalization.
Directly use the Image entity of the System module in the Domain Model of your
module. - ANSWER: Create a ProfilePicture entity and configuring Image entity in the
System module as its generalization.
Which widget needs to be used inside of a List View for visualizing a dynamic image?
Dynamic Image
Image
File Uploader
Image Uploader - ANSWER: Dynamic Image
Which of the following options is used for featuring the navigation menu in a
sidebar?
Atlas Sidebar
Popup
Atlas Default
Atlas Topbar - ANSWER: 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?
Placeholders
Scroll containers
Layout grid
Contents - ANSWER: Placeholders
When a layout is based on another layout, which of the mentioned option refers to
the parent layout?
Master layout
Placeholder layout
Main layout
Template layout - ANSWER: Master layout
Which of the principles needs to be utilized to reduce duplication of already created
elements?
BUY
TRY
FLY
DRY - ANSWER: DRY
You want to re-use a header on multiple pages, which of the following options can
you use to ensure that the content of the header throughout the app automatically
changes after you modify its content?