100% tevredenheidsgarantie Direct beschikbaar na je betaling Lees online óf als PDF Geen vaste maandelijkse kosten 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

Mendix Rapid Developer Course Questions and Answers 2023, Graded A+

Beoordeling
-
Verkocht
-
Pagina's
5
Cijfer
A+
Geüpload op
22-07-2023
Geschreven in
2022/2023

Mendix Rapid Developer Course Questions and Answers 2023, Graded A+ To send feedback on a particular Mendix App, you need to: Submit it via the Feedback widget Which tool can you use for doing your Online Project Management in Mendix? The Mendix Developer Portal Where's the best place to find hints and tips as well as the latest information on creating a great UX in Mendix? Check the newest updates at the Atlas UI site Which of the following is a place where you can share a blog about a cool project you have been working on with Mendix? The Mendix Community Blog How can you get the latest Mendix Studio Pro? By downloading it for free from the Mendix App Store Which of the following Sprint events marks the start of a new Sprint? The Sprint Planning What do story points represent? The effort it will take to finish a user story What needs to be clearly stated in a User story? The value of the user What is the result of a Sprint? A product increment In which stage of the Application Lifecycle are user stories created? Capture Why is it important to be consistent when using layouts? To give the same look and feel across pages in the app It is possible to create a page without having any Entities defined. True Creating a page that is only for a mobile device is done by... selecting a device-specific layout You can preview the pages of the app on all device types without publishing. True Which of the following would be the easiest place to add theming? The Web Modeler When is it necessary to extend the Domain Model? When new dynamic data is needed in the app How is the database structure determined in a Mendix app? By the Domain Model when the app is published Does every database table in a Mendix app automatically have a ID column? True Which is the most commonly used association in Mendix apps? One-to-Many Association Which of the following is not an attribute type in Mendix? Text The green bullet at the beginning of a microflow shows: the starting point of a microflow Which of the following flows is used to go from one activity to the next? A sequence flow A red bullet in a microflow indicates: an end point of the microflow What is a good name for a microflow that allows you to schedule a new TrainingEvent from your homepage. ACT_TrainingEvent_CreateNew You want to add a button to your course overview page that will create a new TrainingEvent. What parameter should you pass to the microflow? The Course entity When you create a new app from within the Developer Portal, the Team Server is automatically enabled. True Which of the following is considered good practice when committing to the repository? Committing small, consistent pieces of work The Connector is a part of Mendix Studio Pro that: Can be used to quickly connect an attribute to a widget or an entity to a list view The Project Explorer is: The part of the Desktop Modeler giving you access to resources of the app such as pages, microflows, and navigation What is a Parameter? Data that serves as input for a microflow What happens when a before commit event returns a false Boolean? The commit won't be executed What is a By association retrieve? A retrieve that happens first from memory and when that is not possible, from the database. Which of the following is a token? [%DateAndTime%] You want to show a value converted using the latest exchange rates in your app. What is type of attribute is it best to use? Calculated attribute What is a transient object? An object that has been created in memory but is not in the database yet. How can validation messages for the same entity be presented together? Perform all the validations in a single microflow Which of the following are validation types on the Domain Model in Mendix? Maximum Length, Range, Unique When validation is triggered on a page where there's no input widget for the attribute that doesn't pass the validation check, where can you expect to find the validation feedback message? In a pop-up Before setting validation rules, which of the following needs to be created? Entities To configure entity access, the app security level must be set to: Production Why would validation be performed in a Microflow rather than the Domain Model? To handle more complex validations. The Microflow needs to return a Boolean value, you are free to add any logic to determine if the data is valid or not. Where can you create user roles? In Project Security A user role does not have access to an attribute. That attribute displays on a page that they do have access to. That results in a security conflict. To solve it, you need to: Edit the visibility of the attribute What is the default security setting when you start developing your app? Off Module roles are connected to: User roles You want trainees to only have access to certain features of the mobile-specific app. What do you need to do? Set the project security accordingly Which of the following widgets it is better not to use when developing an app specifically for mobile? Data grid You want to use your app from your mobile phone. For that you need to create a mobile specific version of your app. False You want to create a button that has conditional visibility. Where do you configure this? In the properties of the button Which layout is it best to use when creating an app for mobile? Phone Specific Which of the following is a WYSIWYG editor? Studio What is the typical duration of a Mendix sprint? 1- 2 weeks You invited some members to join your Mendix team, but they don't want to be part of the project anymore. What can you do? Ask the SCRUM master to remove them from the project The "Card Action" is: a Building Block Before you create your pages, it's good to Create wireframes What is a good name for a page? The information the page will show and what kind of page it is How should the Attribute name for an email address be written in the Domain Model? EmailAddress What is the purpose of adding a navigation menu in your app? Allow the user to find the pages that they are looking for It is possible to publish your app while it still has errors? False What is an object? An instance of an entity You want to explain the reason for adding an exclusive split to a microflow. What is the best way to do it? Add an annotation connected to the exclusive split Which activity will you need if you use a microflow to schedule a new TrainingEvent. Create Object You can use a microflow to create: An object

Meer zien Lees minder
Instelling
Vak

Voorbeeld van de inhoud

Mendix Rapid Developer Course
Questions and Answers 2023, Graded A+
To send feedback on a particular Mendix App, you need to: - answer Submit it via
the Feedback widget

Which tool can you use for doing your Online Project Management in Mendix? - answer
The Mendix Developer Portal

Where's the best place to find hints and tips as well as the latest information on creating
a great UX in Mendix? - answer Check the newest updates at the Atlas UI site

Which of the following is a place where you can share a blog about a cool project you
have been working on with Mendix? - answer The Mendix Community Blog

How can you get the latest Mendix Studio Pro? - answer By downloading it for free
from the Mendix App Store

Which of the following Sprint events marks the start of a new Sprint? - answer The
Sprint Planning

What do story points represent? - answer The effort it will take to finish a user story

What needs to be clearly stated in a User story? - answer The value of the user

What is the result of a Sprint? - answer A product increment

In which stage of the Application Lifecycle are user stories created? - answer
Capture

Why is it important to be consistent when using layouts? - answer To give the same
look and feel across pages in the app

It is possible to create a page without having any Entities defined. - answer True

Creating a page that is only for a mobile device is done by... - answer selecting a
device-specific layout

You can preview the pages of the app on all device types without publishing. - answer
True

Which of the following would be the easiest place to add theming? - answer The
Web Modeler

, When is it necessary to extend the Domain Model? - answer When new dynamic
data is needed in the app

How is the database structure determined in a Mendix app? - answer By the Domain
Model when the app is published

Does every database table in a Mendix app automatically have a ID column? - answer
True

Which is the most commonly used association in Mendix apps? - answer One-to-
Many Association

Which of the following is not an attribute type in Mendix? - answer Text

The green bullet at the beginning of a microflow shows: - answer the starting point of
a microflow

Which of the following flows is used to go from one activity to the next? - answer A
sequence flow

A red bullet in a microflow indicates: - answer an end point of the microflow

What is a good name for a microflow that allows you to schedule a new TrainingEvent
from your homepage. - answer ACT_TrainingEvent_CreateNew

You want to add a button to your course overview page that will create a new
TrainingEvent. What parameter should you pass to the microflow? - answer The
Course entity

When you create a new app from within the Developer Portal, the Team Server is
automatically enabled. - answer True

Which of the following is considered good practice when committing to the repository? -
answer Committing small, consistent pieces of work

The Connector is a part of Mendix Studio Pro that: - answer Can be used to quickly
connect an attribute to a widget or an entity to a list view

The Project Explorer is: - answer The part of the Desktop Modeler giving you access
to resources of the app such as pages, microflows, and navigation

What is a Parameter? - answer Data that serves as input for a microflow

What happens when a before commit event returns a false Boolean? - answer The
commit won't be executed

Geschreven voor

Vak

Documentinformatie

Geüpload op
22 juli 2023
Aantal pagina's
5
Geschreven in
2022/2023
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$21.99
Krijg toegang tot het volledige document:

100% tevredenheidsgarantie
Direct beschikbaar na je betaling
Lees online óf als PDF
Geen vaste maandelijkse kosten


Ook beschikbaar in voordeelbundel

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
jw638729 Nursing
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
299
Lid sinds
2 jaar
Aantal volgers
188
Documenten
15857
Laatst verkocht
4 dagen geleden
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 beoordelingen

5
38
4
4
3
5
2
4
1
9

Populaire documenten

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Veelgestelde vragen