Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Examen

Mendix Intermediate Exam Correctly Solved!!

Puntuación
-
Vendido
-
Páginas
13
Grado
A+
Subido en
09-04-2023
Escrito en
2022/2023

What can you use to exit a loop early, instead of finishing the entire list of iterator objects? - ANSWER A break event You want to find the total number of objects in a list. What can you easily use to do this? - ANSWER Use an aggregate list function. What are batches used for? - ANSWER Processing large amounts of data. What is the list object in a loop called? - ANSWER An iterator What is another way of calling an association? - ANSWER Reference How many associations can you add between two entities? - ANSWER Many associations of various multiplicity. What is a good reason to choose to use an Information Entity instead of multiple associations? - ANSWER You want to display additional information about an association. Which of the event handlers does always need to return a boolean return value? - ANSWER The before commit. Where do you define the "persistable" property of an entity? - ANSWER In the domain model For which of the following entity types does Mendix create a database table? - ANSWER For persistable entity What happens on commit of a non-persistable entity? - ANSWER Current attribute values and association values are stored in memory. What would be a good situation to use a calculated attribute? - ANSWER 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? - ANSWER Cross-module association 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? - ANSWER 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? - ANSWER 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? - ANSWER Owner If you need to import data regularly, what is the best way to do so? - ANSWER Services such as SOAP, REST, and oData What are some alternative methods for importing files into a Mendix app? - ANSWER Flat files, CSV, Excel When transforming, why should you import large datasets into a flat structure before running the transformation? - ANSWER To not overrun available memory What is the fastest way to create overview pages for all of the entities in your domain model? - ANSWER 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? - ANSWER Add columns which use associations. Where do you connect User roles to Module roles? - ANSWER App security What does your app need in order to import Excel data into a Mendix app? - ANSWER The Excel Importer module from the Marketplace. What does the Mx Model Reflection module do? - ANSWER It shows the configuration of your domain model in the client. Why shouldn't make changes to Marketplace modules? - ANSWER Updating to a new version of the module erases your changes. What are JSON structures converted to in Mendix? - ANSWER Objects What do you use to interpret XML or JSON into Mendix objects? - ANSWER Import mappings How do you get REST data using a microflow? - ANSWER Use a Call REST Service action. What are export mappings used to accomplish? - ANSWER Converting Mendix objects to XML or JSON What does a message definition do? - ANSWER 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? - ANSWER Module role You want to manipulate your data as you import it. Which of the following methods would be best suited to accomplish this? - ANSWER The Excel Importer module For the Export to Excel button to properly function, what must be the source of its data grid? - ANSWER XPath How can you export columns from your data grid without displaying them on the page for the user to see? - ANSWER Use CSS to set the column to Display: none What do you need to generate to use the Email Service in your app? - ANSWER Binding Keys What is the information that you have to paste into the "Default Value"? - ANSWER SecretKey and UserName What are the required fields in the send email activity? - ANSWER From, To, Subject If optional values are not provided, what values need to be filled in the send email activity? - ANSWER Empty Where can you download Cognitive AI modules ? - ANSWER AppService of Marketplace What do you use Cognitive AI apps for? - ANSWER Speech recognition, sentiment analysis, face detection, risk assessment, and fraud detection, among others What is the main feature of language detection? - ANSWER Detect language content of a text Which step is correct during implemention sentiment detection? - ANSWER Need sentiment detector Which one is the correct option for implementing translation feature ? - ANSWER Need to create translator object from domain model entity What is the last step you do before finishing the app? - ANSWER Add a translation action Where can you get license tokens from ? - ANSWER Mendix support Where to set license token of Cognitive AI modules ? - ANSWER Where to set license token of Cognitive AI modules ? Which page template did you use to set up the layout of the question and answer page, and the confirmation page? - ANSWER Wizard Form What type of attribute do you need to create for the different luggage plans you want to offer? - ANSWER Enumeration Where can you set up speech recognition rules in the Microphone widget ? - ANSWER Items in Voice to action Which one is the correct language format for American English? - ANSWER en-US Where can you set up the data in the Audio Player widget ? - ANSWER In the General tab, under Source What do you need to do before you can test your app? - ANSWER Add page navigation Which step is necessary before your app goes live ? - ANSWER Preview and test What can Cognitive AI do ? - ANSWER Help you improve customer support What is the first thing you need to do to make the AI agent more powerful ? - ANSWER Create a lot of possible questions What do you need to generate to use the Receipt Processing in your app? - ANSWER Binding Keys Which Constants you have to set before you can start using Receipt Processing? - ANSWER Secret_Key, Access_Key, and Encryption_Key Which app template is best to use for automating request approval process? - ANSWER Approval Template What is the aim of generating import mapping in your Receipt Processing app? - ANSWER To map extracted data from Receipt images into non-persistent entities Where can you download the JSON structure for your Receipt Processing app? - ANSWER In Document Model Training web app How do you add downloaded JSON structure to your app? - ANSWER Right click on folder or module, add other, and select JSON structure What are the parameters that Receipt Processing Activity has? - ANSWER Image List, Import Mapping, Task Queue, Output When do you use Loop activity in your microflow? - ANSWER 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? - ANSWER Use Event Handlers Where can you download File Dropper widget for your app? - ANSWER Marketplace How do you make sure that the file(s) uploaded into File Dropper will be correctly associated with ImageBatchReceipt entity in your page? - ANSWER 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? - ANSWER Data grid Module Roles can be used to grant access on: - ANSWER Pages, Microflows, Entities defined in the module What may cause the error - "Creating Object of type MyReceiptModule.InputImagesReceipt failed for Security Reasons" ? - ANSWER Access rules for Entity not configured properly What should be the "Security Level" while deploying your App in Production ? - ANSWER Production How can you configure different home pages for different users ? - ANSWER You can configure Role-based home pages What do you need to generate to use the Invoice Processing in your app? - ANSWER Binding Keys Which of the following is the main purpose of Invoice Processing Service in Mendix? - ANSWER Extract data from invoice effectively Where do you need to go to configure binding keys? - ANSWER InvoiceProcessing Module - Constants What is the most appropriate prefix for Import Mapping name? - ANSWER ImM_ What do you need a Model Id for when using Invoice Processing Service? - ANSWER To configure the Invoice Processing activity with the app What are the parameters that Invoice Processing Activity has? - ANSWER Model Id, Image List, Import Mapping, Task Queue, Output The different microflows you need for Invoice Processing app are the microflows to: - ANSWER Start invoice extraction and process invoice extraction Where can you find the Model Id for Invoice Processing Service? - ANSWER Document Training Web What is the best alternative to process something immediately after an object is committed? - ANSWER Event Handler Can you use Invoice model as soon as it is created in Document Training Web? - ANSWER No, the model has to be published first How do you make sure that the file(s) uploaded into File Dropper will be correctly associated with ImageBatchInvoice entity in your page? - ANSWER By assigning the right file entity and Association to context in the File Dropper edit window Which widget do you need to display the extracted data of the invoice? - ANSWER Data grid You want to allow the end-users to delete some extracted result. How can you achieve this? - ANSWER Create a microflow which will delete selected rows and configure a delete button to call this microflow What is the sequence for publishing a model? - ANSWER Create Model - Upload sample images - Add Marker - Publish Model What are the steps to follow to make the IDS work? - ANSWER Train the model - Publish the model - Extract data What do you need a Model Id for when using Intelligent Document Service? - ANSWER To configure the IDS activity within the app. Where can you find the Model Id of a trained Document Model for your instance? - ANSWER Document Training Web App Can you use document model as soon as it is created in Training Web App? - ANSWER No, the model has to be trained and published first. How do you make sure that the file(s) uploaded into File Dropper will be correctly associated with ImageBatchIDS entity in your page? - ANSWER By assigning the right file entity and Association to context in the File Dropper edit window. Which widget do you need to display the extracted data of the invoice? - ANSWER Data grid What is the sequence that one should follow for table training? - ANSWER Mark the Table Mark columns including header Mark all rows Save A client wants their application to have a very specific color scheme. Who's work is most likely to be affected? - ANSWER The UI designer A page is taking forever to load. Who's responsibility is it to solve this? - ANSWER The Frontend developer What is the most suitable technique if you want to have an overview of what a user feels and experiences while using an application? - ANSWER Empathy Map What is the main aim of using Customer Value Curve? - ANSWER To find out what shortcomings there are in the general market that you can improve on What qualitative technique focuses on how users group different items? - ANSWER Card Sorting Which of the following are considered qualitative research methods? - ANSWER Competitor Analysis, Card Sorting, Expert Review What should you always do in your wireframe? - ANSWER Add annotations. What is the purpose of a prototype? It should be a representation of... - ANSWER your application to test with. What type of prototype can you do on paper? - ANSWER Low fidelity. You want to use a different styling for different parts of the app, what is probably the best setting for this? Show styling for... - ANSWER App and all modules What is the Styling Editor used for? - ANSWER Styling and JavaScript actions. What part of the CSS syntax references the object that is to be styled? - ANSWER Selector What is the correct naming convention for Sass partials? - ANSWER _ In the Atlas framework, under which folder should you add partials to customize your app's design? - ANSWER Web Where should $variables be kept according to Mendix best practices? - ANSWER In any partial with the name variable. According to best practices, how should you change the font side of H1 headers? - ANSWER By changing the variable in . You notice that a property in the inspector has been crossed through, what does this mean? - ANSWER The property has been overwritten.

Mostrar más Leer menos
Institución
Grado

Vista previa del contenido

Mendix Intermediate Exam Correctly
Solved!!
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

Escuela, estudio y materia

Grado

Información del documento

Subido en
9 de abril de 2023
Número de páginas
13
Escrito en
2022/2023
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

$12.49
Accede al documento completo:

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Conoce al vendedor

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
shantelleG West Virgina University
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
625
Miembro desde
3 año
Número de seguidores
369
Documentos
18110
Última venta
2 semanas hace
GOLD PREMIUM

HELLO? welcome to my store thanks for visiting this page here you are guaranteed of well revised and assured EXAMS ALL GRADED A+ thus making your education journey easy and seamless . DO NOT HESITATE TO CONTACT ME IF YOU ARE IN NEED OF ANY EXAM .I AM READY 24/7 TO ASSIST YOU ALSO REFER YOUR FRIENDS.

4.0

118 reseñas

5
69
4
11
3
24
2
2
1
12

Documentos populares

Recientemente visto por ti

Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes