Refer to the exhibits.
The input array of strings is processed by the batch job that processes, filters, and aggregates the values.
What is the last message logged by the Logger component after the batch job completes processing?
Refer to the exhibits.
The input array of strings is processed by the batch job that processes, filters, and aggregates the values.
What is the last message logged by the Logger component after the batch job completes processing?
The batch job first filters out 'b' from the array ['a', 'b', 'c', 'd', 'e'], leaving ['a', 'c', 'd', 'e']. Then, it transforms the remaining elements to uppercase, resulting in ['A', 'C', 'D', 'E']. The batch aggregator processes the records in groups of three. The first aggregation will be ['A', 'C', 'D'], and the second aggregation will be ['E']. Since the question asks for the last message logged by the Logger component, the correct answer is ['E']. Therefore, the last message logged by the Logger component is 'E'.
Option B is correct
I've written the exact Code. Following are the the two Outputs Payload:[A, C, D] Payload:[E] Question asks "What is the last message logged by the Logger component after the batch job completes processing". So it print 'E'. Correct answer would be Option B.
This question was confused.
A is correct
It should be [ [A, C, D] [E] ], so option A is correct
A. [ ['A', 'C', 'D'], ['E'] ] B. [ 'E' ] C. [ 'D', 'E' ] D. [ 'A', 'C', 'D', 'E' ]
I dont understand where is the ""b", why the answer only have a.c.d, without b ?
That is because the accept expression is written such that it will accept all values except 'b'
A is correct
B is correct. First will process A, B, C, and then second process C (look at the aggregator) batch step by 3 elements
Also we got expression not contains "B" so it skip the "B"
It's B
agree with B
@Moderator, please set the correct answer to this question. It is definitely not D.
Option B is correct