Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

Mendix Intermediate Certification Actual Exam | 2026/2027 | Siemens / Mendix Academy | Complete solutions with Verified Q&A

Rating
-
Sold
-
Pages
21
Grade
A+
Uploaded on
04-04-2026
Written in
2025/2026

Mendix Intermediate Certification Actual Exam | 2026/2027 | Siemens / Mendix Academy | Complete solutions with Verified Q&A Q: This methodology forms the basis for the Mendix Agile approach? Answer Scrum Q: How many stages does it take for a company to become an Innovation Factory? Answer 3 Q: Characterize the Agile way of work? Answer Fixed time, fixed cost, variable scope. Q: What are the 4 P's, defined as key workstreams for achieving success towards digital execution? Answer People, Process, Platform, Portfolio Q: Which of the official Scrum events is performed in the beginning of the Sprint? This event the Development Team determines user stories that will be finished in the Sprint as well. Answer Sprint Planning Q: What do story points associated with a user story indicate? Answer Estimation of complexity of a user story. Q: Who is responsible for prioritization of items in the Product backlog? Answer Product Owner Q: This is performed before the official Sprints start running (before sprint 0)? Answer Prove Legitimacy of a Business Case Q: This term is used to describe the first product increment? Answer Minimal Viable Product Q: Statuses need to be used by the Development Team to indicate the progress of user stories? Answer To-Do, Running, Done Q: Which roles are allowed to update the Product Backlog? Answer Product Owner and Development Team Q: Pace layer model is used for... Answer to define if Mendix is the best fit for an applcation Q: Does sprint 0 deliver a product increment Answer No Q: Can be expressed by means of a Storyboard Answer User journey Q: Which role should not be combined with other roles and requires the full-time dedication? Answer Product Owner Q: Which role typically functions as a Scrum Master in addition to executing own tasks? Answer Lead Developer Q: A location types is characterized by time zone differences resulting in challenges for successful project collaboration? Answer Offshoring. Other environments could be virtual or Co-location which means at the same office Q: What happens in the daily scrum? Answer Team members share their progress, plans, and issues. Q: Which folders contain source information tied to a specific module enabling reuse of this module in another project? Answer Javascriptsource and Javasource folders Q: VerifyP file belonging to the System module is stored in which of the JavaSource sub-folders? Answer Actions Q: M file is stored in which sub-folder of JavaSource directory? Answer Proxies Q: These resources are typically stored in the Resources folder of the App Directory? Answer Configuration files, HTML and Java files Q: Files and folders that together form the styling of your application are typically stored in which folder? Answer Theme Q: When working in an app with version control, what concept would you use to share your database with your team? Answer By creating a data snapshot and adding it to the deployment directory of your app. Q: What type of conflict occurs when you and your colleague both modified the microflow implementing the delete behavior? Answer Modify-Delete *I disagree though and think this would be Modify-Modify/ Since Modify-Delete would be deleting the flow not implementing delete behavior. Q: What is a tagged version? Answer A revision that has been used to build a Mx deployment package Q: Which function is used to merge a complete branch into the mainline and is only available on the main line? Answer Merge feature branch Q: Which of the below mentioned options can be used to merge revisions into and from all lines, main line or branch line? Answer Advanced merge Q: How many source and destination languages can you specify? Answer One source, one destination Q: What does default project language define? Answer The language which users will see when using your app. Q: When and how a default language of an app needs to be selected? Answer Automatically at the moment of app creation. Q: Where can you choose the development language? Answer In the toolbar of Studio Pro Q: 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 Q: What is the easiest way to collect feedback from users from within your app? Answer Use the Feedback widget. Q: Where is page access configured? Answer Module Security Reasonable validation rule to use for an integer datatype 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 to 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? None What main benefit do sub-microflows offer? Better maintainability If you want to leave notes for future developers (or yourself) in a microflow, what can you use? Annotations What is a limitation of a rule compared to a microflow? 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? 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? Set up anonymous users. In a microflow, what is a token? A system-generated value. In a microflow expression, "toUpperCase" is an example of what? A function call In a microflow, what would be an example of a variable? $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? Set a breakpoint condition. How can you have a microflow automatically run at a specific moment in time? Create and enable a scheduled event. What can you use to exit a loop early, instead of finishing the entire list of iterator objects? A break event You want to find the total number of objects in a list. What can you easily use to do this? Use an aggregate list function. Like Count What are batches used for? Processing large amounts of data. What is the list object in a loop called? An iterator Where in Mendix Studio Pro can you configure XPaths? List Views, Data Views, Microflow retrieve activities Which Widget feature utilizes XPaths? Selectable data constraints on Reference Selectors Where can you utilize XPaths in microflows? 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 + 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 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. 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 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 not populated. The correct way of structuring resources within App Explorer? Manually When structuring the App Explorer, which of the following subfolders would be the best choice to store things like Enumerations and Regular Expressions? 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. 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? Adding the microflow logic. Which widget from the listed below needs to be used inside of a List View for visualizing a dynamic image? Image Viewer Which template is used for featuring the navigation menu in a sidebar? Atlas Default This terms refers to the empty areas that form the canvas for any pages that make use of the layout? Placeholders When a layout is based on another layout, which of the mentioned option refers to the parent layout? Master layout Which of the principles needs to be utilized to reduce duplication of already created elements? 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? Snippet This widget can be used to select associated objects, when multiple select is possible? Reference set selector From the buttons on a Data Grid widget that work with single select mode, which ones need to be configured with multi-select mode? Edit, Delete Where should you configure that only selected roles are allowed to see a container on a page? In the Conditional visibility property of the container. How is the size of popup windows set to fixed? By setting the resizable property of the page to No. How can you ensure that the buttons in the footer area of the relatively long and scrollable pop up page are always visible? By removing the outer layout grid. What constraint can you use to show the most recently created items at the top of the page? createdDate (descending) What are the default Mendix options for the popups? Resizable with size determined automatically, with layout grid as the most outer layer of the page. How to make the popup window always visible? Remove the outer layer grid. This provides an easy way to limit access rights for a given role to a specific functionality within an app? By adding a separate module. Where on the page can the Menu document be displayed in an app? Anywhere What alternative to drawing an association between two entities can you use to connect two entities, each located in a separate domain model? By right-clicking in an entity and selecting AddAssociation. Which of the following XPath constraints should be used to allow users to only see their own notifications? [Notifications.Notification_Account='[%CurrentUser%]'] What can you use whenever you wish to display a navigation menu, but not the main navigation tree? Menu What is another term for an association? Reference How many associations can you add between two entities? Many associations of various multiplicity. What is a good reason to choose to use an Information Entity instead of multiple associations? You want to display additional information about an association. Which of the event handlers does always need to return a boolean return value? The before commit. Where do you define the "persistable" property of an entity? In the domain model For which of the following entity types does Mendix create a database table? For persistable entities What happens on commit of a non-persistable entity? Current attribute values and association values are stored in memory. What would be a good situation to use a calculated attribute? When a value changes more often than it is viewed When connecting 2 entities of 2 different modules how do we typically call that association? Cross-Module Assocation You connected two entities by a cross-module association. You want Studio Pro to take you to the associated entity in the other module - which option do you need to choose when you right click the association? Go to the other side Which of the following options list system members that can be stored as indicated in the properties of an entity? Created Date, Changed Date, Owner, ChangedBy Which of the following terms is used to indicate a user that created the object of the given entity? Owner If you need to import data regularly, what is the best way to do so? Services such as SOAP, REST, and oData What are some alternative methods for importing files into a Mendix app? Flat files, CSV, Excel When transforming, why should you import large datasets into a flat structure before running the transformation? To not overrun available memory What is the fastest way to create overview pages for all of the entities in your domain model? Right click an Entity and select "Generate overview pages..." for all entities. How can you show data from multiple entities in the same data grid? Add columns which use associations Where do you connect User roles to Module roles? App Security What does your app need in order to import Excel data into a Mendix app? The Excel Importer module from the Marketplace. What does the Mx Model Reflection module do? It shows the configuration of your domain model in the client. Why shouldn't you make changes to Marketplace modules? Updating to a new version of the module erases your changes. Submit Answers What are JSON structures converted to in Mendix? Objects What do you use to interpret XML or JSON into Mendix objects? Import Mappings How do you get REST data using a microflow? Use a call Rest service action What are export mappings used to accomplish? Converting Mendix objects to XML or JSON What does a message definition do? It defines the messages that are sent to and from your app What type of role should you make for your published REST services documents in security? Module role You want to manipulate your data as you import it. Which of the following methods would be best suited to accomplish this? The Excel Importer module For the Export to Excel button to properly function, what must be the source of its data grid? XPath How can you export columns from your data grid without displaying them on the page for the user to see? Use CSS to set the column to Display: none Where can published data be found? (external entities) Catalog What is a piece of external data called in Mendix? External Entity Why is the version number assigned to an OData Service important? There can be multiple versions of a service and users can connect to a specific one using it. What is an External Entity? An entity that represents an external dataset. Where can you edit the properties (i.e. attributes, name, etc.) of an External Entity? In the domain model of the app where the External Entity is defined What would you use to save changes to an external entity? A Send external object activity Can you modify data in an External Entity? Yes, if the Updateable(write) property of its public resource settings is checked. What does the D in CRUD stand for? Delete An app connected by a grey dotted line to your service in the Landscape view means what? The app is consuming data from your service.

Show more Read less
Institution
Mendix Certified Developer Intermediate
Course
Mendix Certified Developer Intermediate

Content preview

https://www.stuvia.com/user/quizbit07




Mendix Intermediate Certification Actual Exam |
2026/2027 | Siemens / Mendix Academy | Complete
solutions with Verified Q&A



Q: This methodology forms the basis for the Mendix Agile approach?
Answer

Scrum




Q: How many stages does it take for a company to become an Innovation Factory?
Answer

3




Q: Characterize the Agile way of work?
Answer

Fixed time, fixed cost, variable scope.




Q: What are the 4 P's, defined as key workstreams for achieving success towards digital
execution?

Answer

People, Process, Platform, Portfolio

,https://www.stuvia.com/user/quizbit07




Q: Which of the official Scrum events is performed in the beginning of the Sprint? This event
the Development Team determines user stories that will be finished in the Sprint as well.

Answer

Sprint Planning




Q: What do story points associated with a user story indicate?
Answer

Estimation of complexity of a user story.




Q: Who is responsible for prioritization of items in the Product backlog?
Answer

Product Owner




Q: This is performed before the official Sprints start running (before sprint 0)?
Answer

Prove Legitimacy of a Business Case




Q: This term is used to describe the first product increment?
Answer

Minimal Viable Product

, https://www.stuvia.com/user/quizbit07




Q: Statuses need to be used by the Development Team to indicate the progress of user
stories?

Answer

To-Do, Running, Done




Q: Which roles are allowed to update the Product Backlog?
Answer

Product Owner and Development Team




Q: Pace layer model is used for...
Answer

to define if Mendix is the best fit for an applcation




Q: Does sprint 0 deliver a product increment
Answer

No




Q: Can be expressed by means of a Storyboard
Answer

User journey

Written for

Institution
Mendix Certified Developer Intermediate
Course
Mendix Certified Developer Intermediate

Document information

Uploaded on
April 4, 2026
Number of pages
21
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$12.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF


Also available in package deal

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Quizbit07 Rasmussen College
Follow You need to be logged in order to follow users or courses
Sold
134
Member since
3 year
Number of followers
52
Documents
2576
Last sold
19 hours ago
High-Quality Exams, Study guides, Reviews, Notes, Case Studies

Welcome! Here, you will find well-structured and exam-oriented study materials created to help you understand complex topics with ease. Whether you’re preparing for nursing licensure exams (NCLEX, ATI, HESI, ANCC, AANP), healthcare certification reviews (ACLS, BLS, PALS, PMHNP, AGNP), or entrance and readiness tests (TEAS, HESI, PAX, NLN), my resources are designed to guide you step-by-step. I also provide study support for university programs and major courses, including Chamberlain University, WGU programs, Portage Learning, as well as Medical-Surgical Nursing, Pharmacology, Anatomy & Physiology, and more. Everything is updated, organized for quick studying and understanding.

Read more Read less
4.1

16 reviews

5
9
4
2
3
3
2
1
1
1

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions