According to the expense policy of some company, the expenses greater than $1000 need to be accepted by the head of the department. Which of the following solutions would automate the handling of incoming expenses in this company?
2.
You would like to calculate a few aggregated metrics based on the table. Which of the aggregation tasks require a Group Loop instead of a single GroupBy node? Select 2.
Customer_ID | Payment Method | Sales (Food, $) | Sales (Non-food, $)
2 | Credit | 10 | 35
7 | Debit | 5 | 42
7 | Credit | 7 | 38
5 | Credit | 9 | 27
9 | Debit | 15 | 29
2 | Credit | 12 | 33
2 and 3
Which of the following tasks would you solve with a Counting Loop? Select 2.
2 and 3
TRUE or FALSE? You can make the loop stop if it produces an unexpected result, for example, an empty table.
TRUE
TRUE or FALSE? You can inspect the intermediate results of a loop.
TRUE
Loop Start, Loop Body, or Loop End?
Sends parameters and data for each iteration
Loop Start
Loop Start, Loop Body, or Loop End?
Executes the task of the loop
Loop Body
Loop Start, Loop Body, or Loop End?
Checks if the end condition is fulfilled. If yes, collects the results from the iterations
Loop End