Summer Special - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: top65certs

Full Access Salesforce Salesforce-MuleSoft-Developer-I Tutorials

Salesforce Certified MuleSoft Developer 1 Exam (SU24) Questions and Answers

Question 61

Refer to the exhibits.

What DataWeave expression transforms the conductorIds array to the XML output?

Options:

A.

1. 1. trains:

2. 2. conductorIds map ((engId, index) ->

3. 3. train: {

4. 4. engineerId: engId

5. 5. }

6. 6. )

B.

1. 1. { trains:

2. 2.

3. 3. conductorIds map ((engId, index) ->

4. 4. train: {

5. 5. engineerId: engId

6. 6. }

7. 7. )

8. 8. }

C.

1. 1. trains:

2. 2. {(

3. 3. conductorIds map ((engId, index) ->

4. 4. train: {

5. 5. engineerId: engId

6. 6. }

7. 7. )

8. 8. )}

D.

1. 1. {( trains:

2. 2.

3. 3. conductorIds map ((engId, index) ->

4. 4. train: {

5. 5. engineerId: engId

6. 6. }

7. 7. )

8. 8. )}

Question 62

Refer to the exhibits.

The Mule application does NOT define any global error handlers.

The Validation component in the private flow throws an error

What response message is returned to a web client request to the main flow's HTTP Listener?

Options:

A.

''Child error"

B.

"Parent error"

C.

"Validation Error"

D.

"Parent completed"

Question 63

Refer to the exhibit. The input array of strings is passed to the batch job, which does NOT do any filtering or aggregating. What payload is logged by the Logger component?

Options:

A.

Summary report of processed records

B.

[ "Apple", "Banana" ]

C.

[ "Apptel2", "Bananal2" ]

D.

[ "Apptel", "Bananal", 2 ]

Question 64

A company has defined two RAML fragments, Book Data Type and Book Example to be used in APIs.

What would be valid RAML to use these fragments ?

Options:

A.

1. #%RAML 1.0

2. title: Books

3. types:

4. Book: ABC/Examples/bookDataType.raml

5. /books:

6. post:

7. body:

8. application/json:

9. type: Book

10. examples:

11. input: ABC/Examples/bookExample.raml

12. responses:

13. 201:

14. body:

15. application/json:

16. example:

17. message: Book added

B.

1.#%RAML 1.0

2.title: Books

3.Book: !include bookDataType.raml

4./books:

5. post:

6. body:

7. application/json:

8. type: Book

9. examples:

10. input: !include bookExample.raml

11. responses:

12. 201:

13. body:

14. application/json:

15. example:

16. message: Book added

C.

1.#%RAML 1.0

2.title: Books

3.Book: bookDataType.raml

4./books:

5. post:

6. body:

7. application/json:

8. type: Book

9. examples:

10. input: bookExample.raml

11. responses:

12. 201:

13. body:

14. application/json:

15. example:

16. message: Book added

D.

1.#%RAML 1.0

2.title: Books

3.Book: bookDataType.raml

4./books:

5. post:

6. body:

7. application/json:

8. type: Book

9. examples:

10. input: bookExample.raml

11. responses:

12. 201:

13. body:

14. application/json:

15. example:

16. message: Book added