Refer to the exhibits.
A. Option A
B. Option B
C. Option C
D. Option D
An On Table Row Database listener retrieves data from a table that contains record_id, an
increasing numerical column.
How should the listener be configured so it retrieves new rows at most one time?
A.
Set the target tostore the last retrieved record_id value
B.
Set the ObjectStore to store the last retrieved record_id value
C.
Set the target to the record_id column
D.
Set the watermark column to the record id column
Set the watermark column to the record id column
Refer to the exhibits.
What is valid text to set the field in the Database connector configuration to the username
value specified in the config.yaml file?
A. ${db.username>
B. #[db.username]
C. #[db:username]
D. ${db:username>
An app team is developing a mobile banking app. It took them two months to create their
own APIs to access transaction information from a central database. The app team later
found outthat another team had already built an API that accesses the transaction
information they need.
According to MuleSoft, what organization structure could have saved the app team two
months of development time?
A.
Center of Excellence
B.
Center for Enablement
C.
MuleSoft Support Center
D.
Central API Review Board
Center for Enablement
What are the latest specification of RAML available?
A. 1.2
B. 1
C. 0.8
D. 2
Explanation:
The current version of the RAML specification is 1.0
You can check RAML version in RAML definition by referring to first comment. See
highlighted part in below image.
Refer to the exhibits.
What payload and quantity are logged at the end of the main flow?
A. [[1,2,3,4], 14]
B. [[order1, order2, order3, order4], 14]
C. [[1,2,3,4], 10]
D. [orderlorder2order3order4,14]
Refer to the exhibits.
The Batch job processes an array of strings.
What information is logged by the logger component after the batch job scope completes
processing of the input payload?
A. Total Records Processed: 3
Successful Records: 3
Failed Records: 0
payload: ["A","B","C"]
B. ["A","B","C"]
C. Total Records Processed: 3
Successful Records: 3
Failed Records: 0
payload: ["a", "b", "c"]
D. Total Records Processed: 3
Successful Records: 3
Failed Records: 0
Explanation:
Correct answer is as below. On complete phase only has access to batch job result
statistics and payload is not available.
Total Records Processed: 3
Successful Records: 3
Failed Records: 0
What is output of Dataweave flatten function?
A. Object
B. Map
C. Array
D. LInkedHashMap
Explanation:
Correct answer is Array.
Flatten turns a set of subarrays (such as [ [1,2,3], [4,5,[6]], [], [null] ]) into a single, flattened
array (such as [ 1, 2, 3, 4, 5, [6], null ]).
This example defines three arrays of numbers, creates another array containing those
three arrays, and then uses the flatten function to convert the array of arrays into a single
array with all values.
Source
%dw 2.0
output application/json
var array1 = [1,2,3]
var array2 = [4,5,6]
var array3 = [7,8,9]
var arrayOfArrays = [array1, array2, array3]
---
flatten(arrayOfArrays)
Output
[ 1,2,3,4,5,6,7,8,9 ]
Page 3 out of 29 Pages |
Mulesoft MCD-Level-1 Exam Questions Home | Previous |