Rédigé par des étudiants ayant réussi Disponible immédiatement après paiement Lire en ligne ou en PDF Mauvais document ? Échangez-le gratuitement 4,6 TrustPilot
logo-home
Examen

Mendix Intermediate Questions and Answers 2023, Graded A+

Note
-
Vendu
-
Pages
13
Grade
A+
Publié le
22-07-2023
Écrit en
2022/2023

Mendix Intermediate Questions and Answers 2023, Graded A+ 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. 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 VerifyP file belonging to the System module is stored in which of the JavaScript sub-folders? Actions M 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? Your answer 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. 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 Where in Mendix Studio Pro can you configure XPaths? Microflow Retrieve actions 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 the cancelled requests 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 Which of the following options indicates a 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 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. 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 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 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 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.

Montrer plus Lire moins
Établissement
Cours

Aperçu du contenu

Mendix Intermediate Questions and
Answers 2023, Graded A+
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 version 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? - answer Clicking the Landscape tab.

An app connected by a grey dotted line to your service in the Data Hub Landscape
means what? - answer 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? - answer The app is providing data to your service.

Which of the events is performed in the beginning of the sprint? - answer Sprint
planning

What happens in the daily scrum? - answer 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? - answer Based on the descending priority.

, What do Story Points associated with a user story indicate? - answer 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? - answer Sprint Planning

Which folders contain source information tied to a specific module enabling reuse of this
module in another project? - answer Javascriptsource and Javasource folders

VerifyPassword.java file belonging to the System module is stored in which of the
JavaScript sub-folders? - answer Actions

Microflows.java file is stored in which sub-folder of JavaScript directory? - answer
Proxies

Which of the following sources are typically stored in the Resources folder of the App
Directory? - answer 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? - answer Theme

When working in an app with version control, which concept would you use to share
your database with your team?
Your answer - answer 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? - answer Modify-Modify

Which of the below listed definitions can be applied to explain what does a tagged
version mean? - answer 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? - answer 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? - answer Advanced merge

Where in Mendix Studio Pro can you configure XPaths? - answer Microflow Retrieve
actions

Which Widget feature utilizes XPaths? - answer Selectable data constraints on
Reference Selectors

Where can you utilize XPaths in microflows? - answer In the 'Retrieve' action

École, étude et sujet

Cours

Infos sur le Document

Publié le
22 juillet 2023
Nombre de pages
13
Écrit en
2022/2023
Type
Examen
Contient
Questions et réponses

Sujets

€20,22
Accéder à l'intégralité du document:

Mauvais document ? Échangez-le gratuitement Dans les 14 jours suivant votre achat et avant le téléchargement, vous pouvez choisir un autre document. Vous pouvez simplement dépenser le montant à nouveau.
Rédigé par des étudiants ayant réussi
Disponible immédiatement après paiement
Lire en ligne ou en PDF


Document également disponible en groupe

Faites connaissance avec le vendeur

Seller avatar
Les scores de réputation sont basés sur le nombre de documents qu'un vendeur a vendus contre paiement ainsi que sur les avis qu'il a reçu pour ces documents. Il y a trois niveaux: Bronze, Argent et Or. Plus la réputation est bonne, plus vous pouvez faire confiance sur la qualité du travail des vendeurs.
Resolution Nursing
S'abonner Vous devez être connecté afin de suivre les étudiants ou les cours
Vendu
302
Membre depuis
2 année
Nombre de followers
187
Documents
15931
Dernière vente
2 semaines de cela
NURSING VIEW

In my shop you will find documents, package deals, nursing courses, assigments,flashcards and all revision materials .You are welcome

4,0

60 revues

5
38
4
4
3
5
2
4
1
9

Documents populaires

Récemment consulté par vous

Pourquoi les étudiants choisissent Stuvia

Créé par d'autres étudiants, vérifié par les avis

Une qualité sur laquelle compter : rédigé par des étudiants qui ont réussi et évalué par d'autres qui ont utilisé ce document.

Le document ne convient pas ? Choisis un autre document

Aucun souci ! Tu peux sélectionner directement un autre document qui correspond mieux à ce que tu cherches.

Paye comme tu veux, apprends aussitôt

Aucun abonnement, aucun engagement. Paye selon tes habitudes par carte de crédit et télécharge ton document PDF instantanément.

Student with book image

“Acheté, téléchargé et réussi. C'est aussi simple que ça.”

Alisha Student

Foire aux questions