XSIAM-ENGINEER · Question #20
A sub-playbook is configured to loop with a For Each Input. The following inputs are given to the sub-playbook: Input x: W,X,Y,Z Input y: a,b,c,d Input z: 9 Which inputs will be used for the second…
The correct answer is B. X,b,9. In a For Each Input loop, each iteration takes the next value from the list inputs while keeping constant inputs unchanged. On the second iteration: - x = X (second value of W,X,Y,Z) - y = b (second value of a,b,c,d) - z = 9 (constant for all iterations). So, the values are X…
Question
A sub-playbook is configured to loop with a For Each Input. The following inputs are given to the sub-playbook:
Input x: W,X,Y,Z Input y: a,b,c,d Input z: 9 Which inputs will be used for the second iteration of the loop?
Options
- Aa,b,c,d
- BX,b,9
- CX,b
- DX,b,c
How the community answered
(60 responses)- A3% (2)
- B80% (48)
- C10% (6)
- D7% (4)
Explanation
In a For Each Input loop, each iteration takes the next value from the list inputs while keeping constant inputs unchanged. On the second iteration: - x = X (second value of W,X,Y,Z) - y = b (second value of a,b,c,d) - z = 9 (constant for all iterations). So, the values are X, b, 9.
Topics
Community Discussion
No community discussion yet for this question.