Event app last part Flashcards

1
Q

What functionality is needed to send newsletters to people who have bought tickets?

A

The Event manager should be able to create newsletters and send them automatically based on scheduled events.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can scheduled events be configured to execute a microflow at a specific moment in time?

A

Scheduled events can be configured to execute a microflow at a specific moment in time and can be repeated at intervals such as hours days or minutes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the behavior of a scheduled event with an interval of one year?

A

If an interval of a year is given the scheduled event will be triggered every 365 days not precisely every year.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Where can scheduled events be enabled/disabled for production environments?

A

For production environments scheduled events can be enabled/disabled via the appropriate tools like Cloud Portal Windows Service Console etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of loops in Mendix microflows?

A

Loops are used to iterate over a list of objects executing the flow inside the loop for every object in the list.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What elements can a loop contain in a Mendix microflow?

A

A loop in Mendix can contain all elements used in normal microflows with the exception of start and stop events. It can also contain break and continue events.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does a break event do in the context of a loop in Mendix?

A

A break event in a loop will stop the iteration over the list.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the iterator in the context of a loop in Mendix?

A

The iterator in a loop is the object over which the loop iterates resembling an input parameter of a microflow.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How are aggregate functions used in Mendix microflows?

A

Aggregate functions such as Aggregate List are used to calculate aggregated values like maximum minimum sum average and count total amount over a list of objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

In what scenario can aggregate functions be combined with a retrieve action for optimization?

A

Aggregate functions can be combined with a retrieve action resulting in an optimized retrieve from the database especially when calculating values like count after retrieval.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are batches used for in Mendix?

A

Batches in Mendix are used when large amounts of data need to be processed breaking up the full data set into smaller parts to update subsets of records one at a time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How can batch retrieves be configured to manage the size of the data processed in Mendix?

A

Batch retrieves in Mendix can be configured using the Custom range option in a retrieve action allowing you to set limits on the batch size to avoid negative impacts on performance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How can you have a microflow automatically run at a specific moment in time?

A

Create and enable a scheduled event.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What can you use to exit a loop early instead of finishing the entire list of iterator objects?

A

break event

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

You want to find the total number of objects in a list. What can you easily use to do this?

A

Use an aggregate list function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are batches used for?

A

Processing large amounts of data.