Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Mendix Intermediate Exam Questions and Answers! 100% CORRECT ANSWERS, Exams of Engineering

Where can published data be found - Answer- Data Hub Catalog What is a piece of data from the data hub called? - Answer- External Entry Why is the ve rsion number assigned to Odata service important? - Answer- There can be multiple versions of a service and users can connect to a specific one using it. What is an external entity? - Answer- An entity that is connected to a dataset in Data Hub. What source type is used within Microsoft Excel to connect to a dataset in Data Hub? - Answer- OData Feed Where can you edit the properties (i.e. attributes, name, etc.) of an External Entity? - Answer- In the domain model of the app where the External Entity is defined. What would you use to save changes to an external entity? - Answer- A Send external object activity Can you modify data in an External Entity? - Answer- Yes, if the Updateable(write) property of its public resource settings is checked. What does the D in CRUD stand for? - Answer- Delete How do you get the Data Hub Landscape? - Ans

Typology: Exams

2022/2023

Available from 01/06/2024

as-tutor
as-tutor 🇺🇸

3.8

(4)

124 documents

1 / 24

Toggle sidebar

Related documents


Partial preview of the text

Download Mendix Intermediate Exam Questions and Answers! 100% CORRECT ANSWERS and more Exams Engineering in PDF only on Docsity! lOMoARcPSD|3013804 lOMoARcPSD|3013804 Mendix Intermediate Developer Exam Questions Where can published data be found Data Hub Catalog What is a piece of data from the data hub called? External Entry Why is the version number assigned to 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 is connected to a dataset in Data Hub. What source type is used within Microsoft Excel to connect to a dataset in Data Hub? OData Feed 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 How do you get the Data Hub Landscape? Clicking the Landscape tab. An app connected by a grey dotted line to your service in the Data Hub Landscape means what? The app is consuming data from your service. An app connected by a grey solid line to your service in the Data Hub Landscape means what? The app is providing data to your service. Which of the events is performed in the beginning of the sprint? Sprint planning What happens in the daily scrum? Team members share their progress, plans, and issues. lOMoARcPSD|3013804 Which of the following approaches needs to be used to sort items in the product backlog from top to bottom? Based on the descending priority. What do Story Points associated with a user story indicate? Estimation of complexity of a user story. During which of the Sprint Events the development team determines user stories that will be finished in the sprint? Sprint Planning Which folders contain source information tied to a specific module enabling reuse of this module in another project? Javascriptsource and Javasource folders VerifyPassword.java file belonging to the System module is stored in which of the JavaScript sub-folders? Actions Microflows.java file is stored in which sub-folder of JavaScript directory? Proxies Which of the following sources are typically stored in the Resources folder of the App Directory? Configuration files, HTML and Java files Files and folders that together form the styling of your application are typically stored in which of the following folders? Theme When working in an app with version control, which concept would you use to share your database with your team? By creating a data snapshot and adding it to the deployment directory of your app. What type of conflict occurs when you and your colleague both modified the microflow implementing the delete behavior? Modify-Modify Which of the below listed definitions can be applied to explain what does a tagged version mean? A revision that has been used to build a Mx deployment package. lOMoARcPSD|3013804 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. Which of the following options 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 Add>Association. Which of the following XPath constraints should be used to allow users to only see their own notifications? [Notifications.Notification_Account='[%CurrentUser%]'] lOMoARcPSD|3013804 What can you use whenever you wish to display a navigation menu, but not the main navigation tree? Menu How many source and destination languages can you specify? One source, one destination What does default project language define? The language which users will see when using your app. When and how a default language of an app needs to be selected? Automatically at the moment of app creation. Where can you choose the development language? 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? Batch translation What is the easiest way to collect feedback from users from within your app? Use the feedback widget Where is page access configured? Module Security What would be a reasonable validation rule to use for AllowedNumberOfVisitorsPerDay? Range <= 1000 How can you easily manage accounts for your app? Connect navigation to the built-in Account_Overview page Is it possible limit an entity to only one object? Yes, through a Microflow What is a limitation of a sub-microflow compared to a regular microflow? None. Sub-microflows are equally capable. 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 lOMoARcPSD|3013804 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 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. What are batches used for? Processing large amounts of data. What is the list object in a loop called? An iterator What is another way of calling an association? Reference How many associations can you add between two entities? Many associations of various multiplicity. lOMoARcPSD|3013804 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 What do you need to generate to use the Email Service in your app? Binding Keys What is the information that you have to paste into the "Default Value"? SecretKey and UserName What are the required fields in the send email activity? From, To, Subject If optional values are not provided, what values need to be filled in the send email activity? Empty Where can you download Cognitive AI modules ? AppService of Marketplace What do you use Cognitive AI apps for? Speech recognition, sentiment analysis, face detection, risk assessment, and fraud detection, among others What is the main feature of language detection? Detect language content of a text Which step is correct during implemention sentiment detection? Need sentiment detector Which one is the correct option for implementing translation feature ? Need to create translator object from domain model entity What is the last step you do before finishing the app? Add a translation action Where can you get license tokens from ? Mendix support Where to set license token of Cognitive AI modules ? Answer pending---- Which page template did you use to set up the layout of the question and answer page, and the confirmation page? Wizard Form lOMoARcPSD|3013804 What type of attribute do you need to create for the different luggage plans you want to offer? Enumeration Where can you set up speech recognition rules in the Microphone widget ? Items in Voice to action Which one is the correct language format for American English? en-US Where can you set up the data in the Audio Player widget ? In the General tab, under Source What do you need to do before you can test your app? Add page navigation Which step is necessary before your app goes live ? Preview and test What can Cognitive AI do ? Help you improve customer support What is the first thing you need to do to make the AI agent more powerful ? Create a lot of possible questions What do you need to generate to use the Receipt Processing in your app? Binding Keys Which Constants you have to set before you can start using Receipt Processing? Secret_Key, Access_Key, and Encryption_Key Which app template is best to use for automating request approval process? Approval Template What is the aim of generating import mapping in your Receipt Processing app? To map extracted data from Receipt images into non-persistent entities Where can you download the JSON structure for your Receipt Processing app? In Document Model Training web app How do you add downloaded JSON structure to your app? Right click on folder or module, add other, and select JSON structure lOMoARcPSD|3013804 What are the parameters that Receipt Processing Activity has? Image List, Import Mapping, Task Queue, Output When do you use Loop activity in your microflow? When we want to allow certain activities in our microflow to be executed repeatedly What would you do if you want to call a microflow on completion of commit operation of an entity? Use Event Handlers Where can you download File Dropper widget for your app? Marketplace How do you make sure that the file(s) uploaded into File Dropper will be correctly associated with ImageBatchReceipt entity in your page? By assigning the right file entity and Association to context in the File Dropper edit window Which widget do you use to display the extracted data of the receipt? Data grid Module Roles can be used to grant access on: Pages, Microflows, Entities defined in the module What may cause the error - "Creating Object of type MyReceiptModule.InputImagesReceipt failed for Security Reasons" ? Access rules for Entity not configured properly What should be the "Security Level" while deploying your App in Production ? Production How can you configure different home pages for different users ? You can configure Role-based home pages What do you need to generate to use the Invoice Processing in your app? Binding Keys Which of the following is the main purpose of Invoice Processing Service in Mendix? Extract data from invoice effectively Where do you need to go to configure binding keys? InvoiceProcessing Module – Constants What is the most appropriate prefix for Import Mapping name? ImM_ lOMoARcPSD|3013804 What is the Styling Editor used for? Styling and JavaScript actions. What part of the CSS syntax references the object that is to be styled? Selector What is the correct naming convention for Sass partials? _partial-name.scss In the Atlas framework, under which folder should you add partials to customize your app's design? Web Where should $variables be kept according to Mendix best practices? In any partial with the name variable. According to best practices, how should you change the font side of H1 headers? By changing the variable in custom-variable.scss. You notice that a property in the inspector has been crossed through, what does this mean? The property has been overwritten. Where in the Mendix Studio Pro will you NOT find an XPath? In the Home Page specification for Navigation 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 usually start when 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 on the VacationRequest entity in a Microflow. If you write in the XPath window [Status = 'Cancelled'], what will be the return of the Retrieve action? A list of all the cancelled requests lOMoARcPSD|3013804 Say you are writing an XPath in a Retrieve action on the Request entity in a microflow. If you write in the XPath window [VacationRequest.VacationRequest_Submitter='[%CurrentUser%]'], what will be the return of the Retrieve action? A list of all vacation requests submitted by the current user Let's assume we 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 we 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 VacationReuqests 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 What is a reference selector? A reference selector is used to display and, optionally, allow the end-user to select the value of a one-to-one or one-to-many association by selecting the associated object This has the added advantage that you can choose an attribute from an object which is linked via several association steps. Which of the following options indicates a correct way of structuring resources within Project Explorer? Manually When structuring the Project 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. lOMoARcPSD|3013804 Which widget from the listed below needs to be used inside of a List View for visualizing a dynamic image? Image Viewer Which of the following options can be used in Mendix Studio for customizing styling of an app? By adjusting theme setting in the Theme Editor. Which of the following options is used for featuring the navigation menu in a 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? 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 Which of the following options indicates a default configuration of a page created using the Wizard Progress page template, consisting of 4 page template steps? Step 2 is active, Step 1 is visited In order to re-use a header from a given page on several other pages, which of the following options would allow you to automatically update the content of this header throughout the app after its content has been changed? Snippet Which of the following widgets 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. lOMoARcPSD|3013804 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 Where can you import and manage User Stories? The Developer Portal What is the easiest way to collect feedback from users from within your app? Use the Feedback widget. Where is page access configured? Module Security What would be a reasonable validation rule to use for AllowedNumberOfVisitorsPerDay? Range <= 1000 How can you easily manage accounts for your app? Connect navigation to the built-in Account_Overview page What is a limitation of a sub-microflow compared to a regular microflow? None. Sub-microflows are equally capable. 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. 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. lOMoARcPSD|3013804 In a microflow, what is a token? A system-generated value. In a microflow expression, "toUpperCase" is an example of what? A function 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, before 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. What are batches used for? Processing large amounts of data. What is the list object in a loop called? An iterator Which of the events is performed in the beginning of the sprint? Sprint planning What happens in the daily scrum? Team members share their progress, plans, and issues. Which of the following approaches needs to be used to sort items in the product backlog from top to bottom? Based on the descending priority. What do Story Points associated with a user story indicate? Estimation of complexity of a user story. lOMoARcPSD|3013804 During which of the Sprint Events the development team determines user stories that will be finished in the sprint? Sprint Planning Which folders contain source information tied to a specific module enabling reuse of this module in another project? Javascriptsource and Javasource folders VerifyPassword.java file belonging to the System module is stored in which of the JavaScript sub-folders? Actions Microflows.java file is stored in which sub-folder of JavaScript directory? Proxies Which of the following sources are typically stored in the Resources folder of the Project Directory? Configuration files, HTML and Java files Files and folders that together form the styling of your application are typically stored in which of the following folders? Theme When working in a project with version control, which concept would you use to share your database with your team? By creating a data snapshot and adding it to the deployment directory of your project. What type of conflict occurs when you and your colleague both modified the microflow implementing the delete behavior? Modify-Modify Which of the below listed definitions can be applied to explain what does a tagged version mean? A revision that has been used to build a Mx deployment package. Which function is used to merge a complete branch into the mainline and is only available on the main line? 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? Advanced merge
Docsity logo



Copyright © 2024 Ladybird Srl - Via Leonardo da Vinci 16, 10126, Torino, Italy - VAT 10816460017 - All rights reserved