Mendix Advanced Examv1 | Questions with 100% Correct
Answers | Latest Update 2024 | Verified
Inheritance is used to: - ✔✔ANSW✔✔..Inherit the structure and behavior of an entity, so
that all specializations can be used individually within the same process.
What is the result of generalizing the Player entity by the Person entity? -
✔✔ANSW✔✔..Two tables, one per entity
If you wanted to provide feedback to your users that they had entered their date of birth
in the wrong format, which visual cue would be best suitable? - ✔✔ANSW✔✔..We're
sorry, but you need to enter your date of birth in mm/dd/yyyy format
Why should you use familiar UI patterns? - ✔✔ANSW✔✔..To help your users feel more
at home
If you wanted your users to enter a multi-lined delivery note to go with their order, what
widget would you use? - ✔✔ANSW✔✔..Textarea
Which one of the following is a way to help make your pages smarter? -
✔✔ANSW✔✔..Conditional visibility
What does the helper class ".hidden-xs" do? - ✔✔ANSW✔✔..Hides content on the
phone.
What are the three triggers options of widget events? - ✔✔ANSW✔✔..On-enter, on-
change and on-leave
By using conditional editability you can change elements to be either? -
✔✔ANSW✔✔..Editable or read-only
What will happen to the ID's after generalizing the Player and Staff entities by the
Person entity? - ✔✔ANSW✔✔..The ID's of Player and Staff will keep their own set and
sequence and will equal the ID in the Person table.
Which statement is correct?:
- A 1-1 association and inheritance are both an IS type of relation.
- A 1-1 association is an IS and inheritance is an HAS type of relation.
, - A 1-1 association is a HAS and inheritance is an IS type of relation.
- A 1-1 association and inheritance are both an HAS type of relation. - ✔✔ANSW✔✔..-
A 1-1 association is a HAS and inheritance is an IS type of relation.
Why is it a best practice to create a specialization of the FileDocument and Image
entities? - ✔✔ANSW✔✔..It allows for better security and property configuration based
on purpose.
What is the default value of the attribute DeleteAfterDownload? - ✔✔ANSW✔✔..false
Where are the file(s) or image(s) stored by default? - ✔✔ANSW✔✔..On the file server
located on the application server
When it is better to place Indexes? - ✔✔ANSW✔✔..If there are more Read than Write
actions.
What happens when you apply an index? - ✔✔ANSW✔✔..The speed of Read actions
will increase.
What is the result of the association in the image below? - ✔✔ANSW✔✔..A list of ID's in
the Staff object.
The app performance is affected by a reference set (both) because: -
✔✔ANSW✔✔..Both entities needs to be joined with the reference table and data
transfer increases.
Adrian wants to select a staff member for a team. Which domain model would be
suitable?
A: Staff * -> * Team
B: Staff * <- * Team - ✔✔ANSW✔✔..B
What type of domain model changes can have an impact on the data in the database? -
✔✔ANSW✔✔..Type changes and Structural changes
What are the four stages of data conversion? (multiple answers are correct) -
✔✔ANSW✔✔..- Deploy and convert
- Clean up model
- Model the conversion
- Extend domain model
Why is it a best practice to redeploy your app after cleaning up the model? -
✔✔ANSW✔✔..You might be confronted with unexpected and/or complex sync behavior
during a next deployment.
Answers | Latest Update 2024 | Verified
Inheritance is used to: - ✔✔ANSW✔✔..Inherit the structure and behavior of an entity, so
that all specializations can be used individually within the same process.
What is the result of generalizing the Player entity by the Person entity? -
✔✔ANSW✔✔..Two tables, one per entity
If you wanted to provide feedback to your users that they had entered their date of birth
in the wrong format, which visual cue would be best suitable? - ✔✔ANSW✔✔..We're
sorry, but you need to enter your date of birth in mm/dd/yyyy format
Why should you use familiar UI patterns? - ✔✔ANSW✔✔..To help your users feel more
at home
If you wanted your users to enter a multi-lined delivery note to go with their order, what
widget would you use? - ✔✔ANSW✔✔..Textarea
Which one of the following is a way to help make your pages smarter? -
✔✔ANSW✔✔..Conditional visibility
What does the helper class ".hidden-xs" do? - ✔✔ANSW✔✔..Hides content on the
phone.
What are the three triggers options of widget events? - ✔✔ANSW✔✔..On-enter, on-
change and on-leave
By using conditional editability you can change elements to be either? -
✔✔ANSW✔✔..Editable or read-only
What will happen to the ID's after generalizing the Player and Staff entities by the
Person entity? - ✔✔ANSW✔✔..The ID's of Player and Staff will keep their own set and
sequence and will equal the ID in the Person table.
Which statement is correct?:
- A 1-1 association and inheritance are both an IS type of relation.
- A 1-1 association is an IS and inheritance is an HAS type of relation.
, - A 1-1 association is a HAS and inheritance is an IS type of relation.
- A 1-1 association and inheritance are both an HAS type of relation. - ✔✔ANSW✔✔..-
A 1-1 association is a HAS and inheritance is an IS type of relation.
Why is it a best practice to create a specialization of the FileDocument and Image
entities? - ✔✔ANSW✔✔..It allows for better security and property configuration based
on purpose.
What is the default value of the attribute DeleteAfterDownload? - ✔✔ANSW✔✔..false
Where are the file(s) or image(s) stored by default? - ✔✔ANSW✔✔..On the file server
located on the application server
When it is better to place Indexes? - ✔✔ANSW✔✔..If there are more Read than Write
actions.
What happens when you apply an index? - ✔✔ANSW✔✔..The speed of Read actions
will increase.
What is the result of the association in the image below? - ✔✔ANSW✔✔..A list of ID's in
the Staff object.
The app performance is affected by a reference set (both) because: -
✔✔ANSW✔✔..Both entities needs to be joined with the reference table and data
transfer increases.
Adrian wants to select a staff member for a team. Which domain model would be
suitable?
A: Staff * -> * Team
B: Staff * <- * Team - ✔✔ANSW✔✔..B
What type of domain model changes can have an impact on the data in the database? -
✔✔ANSW✔✔..Type changes and Structural changes
What are the four stages of data conversion? (multiple answers are correct) -
✔✔ANSW✔✔..- Deploy and convert
- Clean up model
- Model the conversion
- Extend domain model
Why is it a best practice to redeploy your app after cleaning up the model? -
✔✔ANSW✔✔..You might be confronted with unexpected and/or complex sync behavior
during a next deployment.